defaultStateObject
Specifies the default seriesType and stack of the ChartWizard component. If a state is not defined, the ChartWizard will use the values of the defaultState to create an initial state.
Example
<div id="chart-wizard"></div>
<script>
$("#chart-wizard").kendoChartWizard({
defaultState: {
seriesType: "column",
stack: {
type: "normal"
}
}
});
</script>