如何在例如xAxis上显示键标签。假设我有时间序列,并希望显示细分的标签信息并确保始终显示某些标签。
假设我的数据就像
['2015/1/1', '2015/1/2', ..., '2016/12/31']
我希望我的轴像
2015 3 15 27 Feb 5 14 26 Mar ... 2015
有什么方法可以在echart做到这一点吗?
答案 0 :(得分:0)
尝试使用xAxis.axisLabel.formatter
显示自定义标签。
例如:
option = {
xAxis: {
type: 'category',
data: ['2015/1/1', '2015/1/2', '2015/1/3', '2015/14' ,'2016/12/31'],
axisLabel: {
formatter: function (value) {
return value.split('/').join('-');
}
}
},
yAxis: {
type: 'value'
},
series: [{
data: [820, 932, 901, 934, 1290, 1330, 1320],
type: 'line',
smooth: true
}]
};