Version
5.4.3
Link to Minimal Reproduction
https://echarts.apache.org/examples/zh/editor.html?c=line-log
Steps to Reproduce
option = {
xAxis: {},
yAxis: {type:'log',
minorSplitLine: {
show: true
}},
series: [
{
data: [
[1, 1e-10],
[2, 1e-12],
[3, 1e-13],
[4, 1e-14],
[5, 1e-15],
[6, 1e-16],
[7, 1e-17]
],
type: 'line'
}
]
};
Current Behavior
y axis only have label 0.0000000001
Expected Behavior
should have other smaller labels
Environment
- OS:
- Browser:
- Framework:
Any additional comments?
No response