exportOptions.pdf.dateDate
The date when the PDF document is created. Defaults to new Date().
Example
<div id="chart-wizard"></div>
<script>
$("#chart-wizard").kendoChartWizard({
exportOptions: {
pdf: {
date: new Date(2023, 11, 25)
}
}
});
</script>