I'm working with an issue of missing series when inverting a chart with more than one serie. It worked before we upgraded to v3.0 of Highcharts. So the technique of "dynamically" inverting the chart, is to copy the previous charts options, change the inverted option, then creating a new chart with these options.
options = jQuery.extend(true, {}, chart.options);
options.chart.inverted = isInverted;
chart.destroy();
chart = new Highcharts.Chart(options);
This worked "nicely" before. But now it only keeps one serie. Tried all sorts of solutions, copying the serie object, and adding each serie to the new object, without luck because the copied object uses pointers.
Any takers ?