series.legendItem.highlightObject
The highlight configuration of the legend item.
Example - configure the legend item highlight
<div id="chart"></div>
<script>
$("#chart").kendoChart({
series: [{
type: "line",
name: "Series A",
data: [1, 2, 3],
legendItem: {
highlight: {
visible: true,
markers: {
background: "red"
}
}
}
}]
});
</script>
In this article