score:23

Accepted answer

See the API. This is covered here under exportChart. Essentially do this:

var chart = $('#container').highcharts();
chart.exportChart({
    type: 'application/pdf',
    filename: 'my-pdf'
});

score:1

Check out the exporting properties for Highcharts. You will want to set type to application/pdf.


Related Query

More Query from same tag