pdf.autoPrintBoolean
(default: false)
Specifies if the Print dialog should be opened immediately after loading the document.
Note: Some PDF Readers/Viewers will not allow opening the Print Preview by default, it might be necessary to configure the corresponding add-on or application.
Example - enable pdf autoPrint
<div id="chart"></div>
<script>
$("#chart").kendoChart({
pdf: {
autoPrint: true
},
series: [
{ data: [1, 2, 3] }
]
});
</script>
In this article