pdf.margin.leftNumber|String(default: 0)
The left margin. Numbers are considered as "pt" units.
Example
<div id="stock-chart"></div>
<script>
$("#stock-chart").kendoStockChart({
pdf: {
margin: {
left: 15
}
},
dataSource: {
data: [{
date: new Date(2016, 0, 1),
close: 41
}, {
date: new Date(2016, 0, 2),
close: 42
}]
},
series: [{
field: "close",
name: "Price"
}]
});
</script>
In this article