seriesDefaults.legendItem.markers Object

The configuration of the Chart legend item markers.

By default, the marker configuration will be the same as the series.markers settings of the displayed series.

Example - override marker settings for the legend

<div id="chart"></div>
<script>
$("#chart").kendoChart({
  series: [{
    type: "line",
    markers: {
      visible: true,
      background: "green"
    },
    data: [1, 2, 3]
  }],
  seriesDefaults: {
    legendItem: {
      markers: {
        visible: false
      }
    }
  }
});
</script>
In this article