state.area.backgroundString
The background color of the chart area. Accepts a valid CSS color string, including hex and rgb.
Example
<div id="chart-wizard"></div>
<script>
$("#chart-wizard").kendoChartWizard({
state: {
area: {
background: "#ffffff"
}
}
});
</script>
In this article