HighCharts、EChart图表X轴纵向显示
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");
}
}
}
],