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