Hello,
when i user colorField and user group in DataSource the color result is different like image i attached
you can see here
https://dojo.telerik.com/aBOWINak
group: {
field: "symbol"
},
sort: {
field: "date",
dir: "asc"
},
schema: {
model: {
fields: {
date: {
type: "date"
}
}
}
}
});
function createChart() {
$("#chart").kendoChart({
title: { text: "Stock Prices" },
dataSource: stocksDataSource,
series: [{
type: "column",
field: "close",
categoryField: "date",
name: "#= group.value # (close)",
colorField:"color"
}],
legend: {
position: "bottom"
},