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 use this code for the example
var chart; $(function() { var newh = $("#container").height(); $( window ).resize(function() { newh = $("#container").height(); chart.redraw(); chart.reflow(); }); chart = new Highcharts.Chart(); })
http://jsfiddle.net/Behseini/qheh4w0n/