series.legendItem.highlight.markers.border.colorString|Function

The configuration of the Chart legend highlighted item markers border.

Example - set the legend item highlight markers border color

<div id="chart"></div>
<script>
$("#chart").kendoChart({
  series: [{
    type: "line",
    name: "Series A",
    data: [1, 2, 3],
    legendItem: {
      highlight: {
        markers: {
          border: {
            color: "red",
            width: 2
          }
        }
      }
    }
  }]
});
</script>