I was trying to export multiple charts to a single pdf with the following layout.
It is working well as said in http://jsfiddle.net/BlackLabel/b0jnqd0c/
But when I try to export more number of charts, the entire charts are not exported. For example, if I change the lines in js fiddle code to :
$('#export-pdf').click(function() {
Highcharts.exportCharts([chart1, chart2, chart3, chart4, chart1, chart2, chart3, chart4], {
type: 'application/pdf'
});
});
And try to export 8 charts, my export pdf is missing the 8 charts and is restricted to 6 charts.
My requirement is to export the whole bunch of charts that are dynamically generated to pdf, there may be any number of charts. Also as seen in image, the charts are not fit to pdf page.