legend.offsetX Number
(default: 0)
The X offset of the chart legend. The offset is relative to the default position of the legend. For instance, a value of 20 will move the legend 20 pixels to the right of its initial position. A negative value will move the legend to the left of its current position.
Example - set the chart legend horizontal offset
<div id="chart"></div>
<script>
$("#chart").kendoChart({
legend: {
offsetX: 10
},
series: [
{ name: "Series 1", data: [1, 2, 3] },
{ name: "Series 2", data: [3, 4, 5] }
]
});
</script>