[Bug] axisTick.customValues和axisLabel.formatter冲突
- Dominant language
- TypeScript
- Stars
- 67.3k
- Forks
- 19.8k
- Avg merge
- 11d 14h
- Merged PRs (30d)
- 8
Description
### Version
5.5.1
### Link to Minimal Reproduction
无
### Steps to Reproduce
1、建立图表
2、配置axisTick.customValues
`
axisTick: {
alignWithLabel: true,
customValues: [10, 100, 1000, 10000, 100000, 1000000]
},
`

3、配置axisLabel.formatter
`
axisLabel: {
showMinLabel: true,
showMaxLabel: true,
formatter: function (value) {
return Number(value).toExponential(0)
}
},
`

### Current Behavior
未设置axisLabel.formatter之前,可以根据axisTick.customValues设置的值进行展示,设置了axisLabel.formatter,无法根据根据axisTick.customValues设置的值进行展示
### Expected Behavior
无论是否设置axisLabel.formatter,都根据axisTick.customValues设置的值进行展示
### Environment
```markdown
- OS: win10
- Browser: chrome 130.0.6723.92
- Framework:
```
### Any additional comments?
_No response_
Contributor guide
Assessment
This issue has not been assessed yet.