seriesColors Array

The default colors for the chart's series. When all colors are used, new colors are pulled from the start again.

Example - set the chart series colors

<div id="chart"></div>
<script>
$("#chart").kendoChart({
  seriesColors: ["red", "green"],
  series: [
    { data: [1, 2] },
    { data: [1, 2] },
    { data: [1, 2] }
  ]
});
</script>
In this article