As mentioned here , the colorField option is supported when the series.type parameter is set to bar, column, bubble, donut, pie, candlestick, ohlc, or waterfall.
The only way to do this is to create several episodes. See the script: http://jsfiddle.net/53ygp9ut/2/
function createChart() { $("#chart").kendoChart({ xAxis: {}, yAxis: {}, seriesDefaults: {type: "scatterLine" }, series: [{data: stats1, color: "blue"}, {data: stats2, color: "yellow"}, {data: stats3, color: "red"}], }); } $(document).ready(createChart);
source share