I am trying to invert a chart through code in Highcharts.
I set the inverted property of the chart:
chart.inverted = true;
chart.redraw();
You can see the code I'm using here:
http://jsfiddle.net/Wajood/Hz4bH/
This does not invert the chart. It seems to me that the redraw () function does not seem to care about the inverted property.
Any help / suggestions / advice on this would be appreciated.
Thank.
source
share