state.columnsArray
Specifies the columns to be used for the ChartWizard component. An array of strings should be provided.
Example
<div id="chart-wizard"></div>
<script>
$("#chart-wizard").kendoChartWizard({
state: {
columns: [
"Product Name",
"Sales",
"Profit",
"Region"
]
}
});
</script>