'
Export to Image and Pdf
Contents
Export to Image
The jqChart can be exported to an image with:
$('#jqChart').jqChart('exportToImage');
or
var config = {
fileName: 'Chart.png',
type: 'image/png' // 'image/png' or 'image/jpeg'
};
$('#jqChart').jqChart('exportToImage', config);
You can check our live example - Export to Image Example
Export to Pdf
The jqChart can be exported to a Pdf file with:
$('#jqChart').jqChart('exportToPdf');
or
var config = {
fileName: 'Chart.pdf'
};
$('#jqChart').jqChart('exportToPdf', config);
You can check our live example - Export to Pdf Example