[Bug] y axis label Disappeared when value is smaller than 1e-10, with yaxis type log
Open
bug
en
pending
- Dominant language
- TypeScript
- Stars
- 67.3k
- Forks
- 19.8k
- Avg merge
- 11d 14h
- Merged PRs (30d)
- 8
Description
### 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
```markdown
- OS:
- Browser:
- Framework:
```
### Any additional comments?
_No response_
Contributor guide
Assessment
This issue has not been assessed yet.