Here\'s the fiddle.
I had issue width the chart with on toggling the sidebar.
width
And I got it solved with the help of SO from this post.
Now I\
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/
setTimeout(reflowChart, 200)
Hope it helps! :)