exportOptions.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
<div id="chart-wizard"></div>
<script>
$("#chart-wizard").kendoChartWizard({
exportOptions: {
pdf: {
autoPrint: true
}
}
});
</script>
In this article