legend.focusHighlightObject

The legend focus highlight configuration options.

Example

<div id="chart"></div>
<script>
$("#chart").kendoChart({
  legend: {
    focusHighlight: {
      border: {
        color: "blue",
        width: 3,
        dashType: "dash"
      }
    }
  },
  series: [
    { name: "Series 1", data: [1, 2, 3] },
    { name: "Series 2", data: [4, 5, 6] }
  ]
});
</script>