series.markers.borderObject|Function

The border of the markers.

Example - set the chart series markers border

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

series.markers.border.colorString|Function(default: "black")

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

Example - set the chart series markers border color

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

series.markers.border.widthNumber|Function(default: 2)

The width of the border in pixels.

Example - set the chart series markers border width

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