state.series.colorString|Function
The series base color. The supported values are:
- CSS color string, including hex and rgb
- function(point) - user-defined function that will be evaluated for each point. Returning
undefinedwill assume the default series color.
Example
<div id="chart-wizard"></div>
<script>
$("#chart-wizard").kendoChartWizard({
state: {
series: [{
color: "#ff6600",
data: [100, 150, 200]
}]
}
});
</script>