Highcharts - Issue With The Chart Reflow Function
Here's the fiddle. I had issue width the chart with on toggling the sidebar. And I got it solved with the help of SO from this post. Now I'm facing with another bug. That is if I a
Solution 1:
You are having an issue with the timing.
You are trying to reflow the chart before the animation is finished.
Try with setTimeout(reflowChart, 200)
as I did here: http://jsfiddle.net/hige/J4Uz2/
Hope it helps! :)
Post a Comment for "Highcharts - Issue With The Chart Reflow Function"