legend.focusHighlight.border Object
The border of the focus highlight.
Example - set the focus highlight options
<div id="chart"></div>
<script>
$("#chart").kendoChart({
legend: {
focusHighlight: {
border: {
color: 'blue',
width: 3,
dashType: 'dash',
opacity: 0.5
}
}
},
series: [
{ type: "donut", data: [3, 4] }
]
});
</script>