如图,求教
使用双坐标轴
xAxis: [{ type: 'category', data: [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23], show: false }, { type: 'category', data: [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24], boundaryGap: false, axisTick: { alignWithLabel: true }, position: 'bottom' }], yAxis: { type: 'value' }, series: [{ data: [120, 200, 150, 80, 70, 110, 130,120,210,110,210], type: 'bar', barCategoryGap:'20%', itemStyle: { }, xAxisIndex: 0, backgroundStyle: { color: 'rgba(220, 220, 220, 0.8)' } }]
不知道你想要的是不是这种效果,https://echarts.apache.org/zh...
xAxis: { type: 'category', data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'], boundaryGap: true, // <----------------- },
你可以改变x轴文字的偏移量xAxis:[
{ axisLabel: { padding:[2,2,2,60] //x轴文字偏移 }, }
]
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(3)
使用双坐标轴
不知道你想要的是不是这种效果,https://echarts.apache.org/zh...
你可以改变x轴文字的偏移量
xAxis:[
]