I'm looking to change the yAxis type from "logarithmic" to "linear" dynamically through the API. this will NOT be inside of an event tied to the graph
Anyone know how to do it?
I'm looking to change the yAxis type from "logarithmic" to "linear" dynamically through the API. this will NOT be inside of an event tied to the graph
Anyone know how to do it?
you can use the axis.update method from highcharts documentation. this method helps you in updating the axis options.
chart.yAxis[0].update({
type: types[type]
});
here is an example for you http://jsfiddle.net/7h2Vg/
hope this will be useful.