New to Kendo UI for jQueryStart a free 30-day trial

The border of the markers.

series.markers.border

Object|Function
<div id="chart"></div>
<script>
$("#chart").kendoChart({
  series: [{
    type: "line",
    markers: {
      visible: true,
      border: {
        width: 2,
        color: "green"
      }
    },
    data: [1, 2, 3]
  }]
});
</script>

The color of the border. Accepts a valid CSS color string, including hex and rgb.

Default: "black"

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

The width of the border in pixels.

Default: 2

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