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
You can add an event listener so your chart resizes every time it redraws:
mychart = new Highcharts.stockChart('div', { chart: { events: { redraw: function(e) { mychart.reflow(); } } },