series.highFieldString
The data field containing the high value.
** Available for candlestick and ohlc series only **
Example
<div id="stock-chart"></div>
<script>
$("#stock-chart").kendoStockChart({
dataSource: {
data: [{
date: new Date(2016, 0, 1),
high: 43,
low: 39,
open: 40,
close: 41
}, {
date: new Date(2016, 0, 2),
high: 44,
low: 40,
open: 41,
close: 42
}]
},
series: [{
type: "candlestick",
highField: "high",
lowField: "low",
openField: "open",
closeField: "close",
name: "Price"
}]
});
</script>
In this article