series.currentField String
(default: "current")
The data item field containing the current value.
The
currentField
option is supported when series.type is set to "bullet" or "verticalBullet".
Example - set the bullet chart series current field
<div id="chart"></div>
<script>
$("#chart").kendoChart({
series: [{
type: "bullet",
currentField: "price",
data: [
{ price: 1, target: 2 }
]
}]
});
</script>