HighCharts、EChart图表X轴纵向显示

时间:2020-11-25 19:18:30

HighCharts

回调javascript函数来格式化标签,值通过this.value获得,this的其他属性还包括axis, chart, isFirst and isLast. 默认为:

function() {
return this.value;
}
 xAxis: {
categories: [],
title: { text: null },
labels : {
formatter: function () {
return this.value.split('').join("<br />");
},
style : {
fontSize : '14px',
}
},
},

EChart

xAxis: [
{
axisLabel :
{ formatter: function (val) {
return val.split("").join("\n");
}
}
}
],