state.dataArray
Specifies the data to be visualized in ChartWizard component.
ChartWizard component needs a specific type of data(
ChartWizardDataRow) to work as expected. This type of data, which is an array consists of single or multiple arrays of Objects, which have thefieldandvalueproperties.
Example
<div id="chart-wizard"></div>
<script>
$("#chart-wizard").kendoChartWizard({
state: {
data: [
[
{ field: "Product", value: "Widget A" },
{ field: "Sales", value: 1000 },
{ field: "Profit", value: 250 }
],
[
{ field: "Product", value: "Widget B" },
{ field: "Sales", value: 1500 },
{ field: "Profit", value: 400 }
]
]
}
});
</script>