dataColumns.fieldString
Sets the field name of the column.
Example
<div id="chart-wizard"></div>
<script>
$("#chart-wizard").kendoChartWizard({
dataColumns: [
{
field: "productName",
title: "Product"
},
{
field: "unitPrice",
title: "Price"
}
]
});
</script>
In this article