series.legendItem.highlight.markers.visibleBoolean|Function

If set to true the chart will display the legend item markers. Defaults to the series options.

Example - hide the legend item highlight markers

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