echarts x轴只展示特定的刻度
时间: 2023-06-27 10:02:43 浏览: 210
Echarts时间轴的刻度优化和自适应
4星 · 用户满意度95%
可以通过设置x轴的type为'category',然后设置data属性为一个数组来实现。例如:
```
option = {
xAxis: {
type: 'category',
data: ['周一', '周二', '周三', '周四', '周五', '周六', '周日'],
axisLabel: {
interval: 2 // 每隔两个标签显示一个
}
},
yAxis: {
type: 'value'
},
series: [{
data: [120, 200, 150, 80, 70, 110, 130],
type: 'bar'
}]
};
```
其中,axisLabel的interval属性可以控制每隔多少个标签显示一个。在上面的例子中,每隔两个标签显示一个。你可以根据自己的需求来设置interval的值。
阅读全文