series.currentFieldString
The data field containing the current value.
** Available for bullet and verticalBullet series. **
Example
<div id="stock-chart"></div>
<script>
$("#stock-chart").kendoStockChart({
dataSource: {
data: [{
date: new Date(2016, 0, 1),
current: 41,
target: 45
}, {
date: new Date(2016, 0, 2),
current: 42,
target: 46
}]
},
series: [{
type: "bullet",
currentField: "current",
targetField: "target",
name: "Performance"
}]
});
</script>
In this article