pdf.margin Object
Specifies the margins of the page (numbers or strings with units). Supported units are "mm", "cm", "in" and "pt" (default).
Example - set the margins
<div id="stock-chart" style="width: 600px; height: 400px;"></div>
<script>
$("#stock-chart").kendoStockChart({
pdf: {
margin: {
left: 10,
right: "10pt",
top: "10mm",
bottom: "1in"
}
},
series: [{
type: "line",
field: "value",
categoryField: "date",
data: [
{ value: 1, date: new Date(2012, 1, 1) },
{ value: 2, date: new Date(2012, 1, 2) }
]
}]
});
var chart = $("#stock-chart").getKendoStockChart();
chart.saveAsPDF();
</script>