Is it possible to change the axis title of a HighCharts chart programatically?
I\'m trying to do something like this:
charts.series[0].yAxis.title.text =
The above answer has still one problem. Images created from the plot using the export module will show the original title, not the changed one. Add the following line to fix:
chart.options.yAxis[0].title.text = 'new title';