2

使用图表中的以下选项,我可以为 Xaxis 设置标签旋转角度,

xAxis: {
    labels: {
        rotation: 90
    }
},

我想动态更改 xAxis 旋转(例如单击特定图表类型的按钮)。有什么选择吗?

4

2 回答 2

4

这对我有用:

chart.xAxis[0].update({labels:{rotation:rotationValue}});
于 2014-09-03T13:16:49.360 回答
3

尝试这样的事情,我不确定它会起作用。

chart.xAxis[0].options.labels.rotation = 0;
chart.redraw();
于 2011-05-26T08:32:12.047 回答