pdfObject
Configures the export settings for the saveAsPDF method.
Example - configure the pdf export
<div id="chart"></div>
<script>
$("#chart").kendoChart({
pdf: {
fileName: "chart-export.pdf",
autoPrint: false
},
series: [
{ data: [1, 2, 3] }
]
});
</script>
In this article