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 =
Yes you can do this by using the following:
chart.yAxis[0].axisTitle.attr({ text: 'new title' });