Highcharts Demo
author(s): Torstein Hønsi
by sbochan
HTML
<script src="http://code.highcharts.com/highcharts.js"></script>
<script src="http://code.highcharts.com/modules/exporting.js"></script>
<div id="container" style="height: 300px; margin-top: 1em"></div>
JavaScript
$(function () {
$('#container').highcharts({
series: [{
data: [null, 71.5, 106.4, 129.2, null, 176.0, 135.6, 148.5, 216.4, 194.1, null, 54.4]
}],
},function(chart){
setTimeout(function(){
chart.exportChart();
},1);
});
});