Hi,
If i have a chart in a div which is hidden with css when the page loads, the rendering is totally messed up if I decide to toggle the div.
All i do is to have this:
<style>
.myChart { display: none }
</style>
Then .myChart is added to the actual div containing the chart. If i then have a jQuery function running:
$(‘myChart’).toggle();
The whole render of the chart is very strange. Maybe there’s a workaround?