series.legendItem.markers.border.colorString|Function

The configuration of the Chart legend item markers border.

Example - set the legend item markers border color

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