score:11

Accepted answer

I was incorrectly setting the new values, eg:

chart.options.yAxis.tickInterval = markInterval;

should be

chart.yAxis[0].options.tickInterval = markInterval;

then everything works as expected.


Related Query

More Query from same tag