series.targetField String
(default: "target")
The data item field containing the target 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",
targetField: "price",
data: [
{ current: 1, price: 2 }
]
}
]
});
</script>