state.series.fieldString(default: "value")
The data item field which contains the series value. The field name should be a valid Javascript identifier and should contain only alphanumeric characters (or "$" or "_"), and may not start with a digit.
Example
<div id="chart-wizard"></div>
<script>
$("#chart-wizard").kendoChartWizard({
state: {
series: [{
field: "revenue",
name: "Monthly Revenue"
}]
}
});
</script>
In this article