state.initialSeries.colorString
The series base color. The supported values are:
Example
<div id="chart-wizard"></div>
<script>
$("#chart-wizard").kendoChartWizard({
state: {
initialSeries: {
color: "#ff6800",
field: "sales"
}
}
});
</script>
- 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.
In this article