I have been looking through the forums and the docs, but can't find a way to have separate arrays of colors for each series. I know how to specify the color array using seriesColors, but not at each series level. I want my donut chart with two series to have 2 different color schemes without using colors from the data, i.e. series.colorField
For example: http://demos.kendoui.com/dataviz/donut-charts/index.html I want the inner circle to have one set of colors, and the outer circle to have another. I want to do this via JS/HTML, not from the data source. Something like:
"seriesColorsOne": [
"#428bca",
"#014478",
"#a8d166"]
"seriesColorsTwo": [
"#ED9C28",
"#d9534f",
"#363636"]
I am sure I am just overlooking something.
For example: http://demos.kendoui.com/dataviz/donut-charts/index.html I want the inner circle to have one set of colors, and the outer circle to have another. I want to do this via JS/HTML, not from the data source. Something like:
"seriesColorsOne": [
"#428bca",
"#014478",
"#a8d166"]
"seriesColorsTwo": [
"#ED9C28",
"#d9534f",
"#363636"]
I am sure I am just overlooking something.