Highcharts:如何以编程方式更改yAxis标题?

时间:2014-07-30 23:51:39

标签: highcharts

我可以用

更改Highcharts图表的标题
chart.setTitle({text: 'The title'});

但我无法更改垂直标题yAxis.title,我试过

chart.yAxis.title = { text: 'The other title' };
chart.redraw();

但它不起作用。有什么想法吗?

1 个答案:

答案 0 :(得分:2)

您可以使用axis.setTitle-method,如this JSFiddle example

该方法接受参数:

setTitle(Object title, [Boolean redraw])

示例代码为:

chart.yAxis[0].setTitle({ text: 'The other title' });

yAxis是一个数组,因为可能有多个y轴。