johnnhan opened a new issue #16263:
URL: https://github.com/apache/echarts/issues/16263
### Version
5.2.2
### Link to Minimal Reproduction
_No response_
### Steps to Reproduce
条形图配置项如下
`option = {
title: {
text: 'World Population'
},
tooltip: {
trigger: 'axis',
axisPointer: {
type: 'shadow'
}
},
legend: {},
xAxis: {
type: 'value',
boundaryGap: [0, 0.01],
max: 300000,
},
yAxis: {
type: 'category',
data: ['Brazil', 'Indonesia', 'USA', 'India', 'China', 'World']
},
series: [
{
name: '2011',
type: 'bar',
data: [18203, 23489, 29034, 104970, 131744, 630230]
}
],
dataZoom: [{
show: false,
}],
};`
### Current Behavior
数据超过max的项没有展示
### Expected Behavior
就像柱状图一样,数据超过max的项应该展示出来
### Environment
```markdown
- OS:
- Browser:
- Framework:
```
### Any additional comments?
_No response_
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]