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 =
I couldn't get either of the above to work, perhaps things have changed since last year... I ended up using:
chart.yAxis[0].update({ title:{ text: "new title" } });
and it worked nicely...