seriesColorsArray
The default colors for the chart's series. When all colors are used, new colors are pulled from the start again.
Example
<div id="sparkline"></div>
<script>
$("#sparkline").kendoSparkline({
type: "line",
seriesColors: ["red", "blue", "green", "orange"],
series: [{
data: [10, 15, 8, 12]
}]
});
</script>
In this article