exportOptions.pdf.marginObject

Specifies the margins of the page (numbers or strings with units). Supported units are "mm", "cm", "in" and "pt" (default).

Example

<div id="chart-wizard"></div>
<script>
$("#chart-wizard").kendoChartWizard({
    exportOptions: {
        pdf: {
            margin: {
                top: "20mm",
                left: "20mm",
                bottom: "20mm",
                right: "20mm"
            }
        }
    }
});
</script>