option = {
xAxis: {
type: 'category',
data: ['类目1', '类目2', '类目3'],
name: 'X轴名称',
axisLabel: {
rotate: 45, // 旋转角度,单位为度
margin: 15 // 与轴线的距离
}
},
yAxis: {
type: 'value',
name: 'Y轴名称'
},
series: [{
type: 'bar',
data: [10, 20, 15]
}]
};
在上述代码中,axisLabel 属性的 rotate 参数用于设置坐标轴标签(包括轴名称)的旋转角度,单位为度。margin 参数用于设置坐标轴标签与轴线的距离。
你可以根据具体的需求调整这两个参数的数值。
转载请注明出处:http://www.zyzy.cn/article/detail/5164/ECharts