legend.title.margin.leftNumber
(default: 0)
The left margin of the title.
Example
<div id="chart"></div>
<script>
$("#chart").kendoChart({
legend: {
title: {
text: "Legend",
margin: {
left: 30
}
}
},
series: [
{ name: "Series 1", data: [1, 2, 3] },
{ name: "Series 2", data: [4, 5, 6] }
]
});
</script>
In this article