I\'m using Highcharts within Zurb\'s Foundation framework for a class project. I have three charts within a section tab. One is within a 12-column div, the other two are on the
Just want to add another solution:
$('.chart').highcharts(options, function(chart) { setTimeout(function() { chart.reflow(); }); });
What it does is reflowing the chart the next frame after it has been rendered.