legend.inactiveItems.labels Object
The chart legend label configuration.
Example - configure the chart legend labels
<div id="chart"></div>
<script>
$("#chart").kendoChart({
legend: {
inactiveItems: {
labels: {
background: "green",
color: "white"
}
}
},
series: [
{ name: "Series 1", data: [1, 2, 3] },
{ name: "Series 2", data: [3, 4, 5] }
]
});
</script>