state.seriesTypeString
The series type of the chart.
The supported series types are:
- 'column'
- 'bar'
- 'line'
- 'pie'
- 'scatter'
Example
<div id="chart-wizard"></div>
<script>
$("#chart-wizard").kendoChartWizard({
state: {
seriesType: "line"
}
});
</script>
In this article