navigator.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({
navigator: {
series: [{
type: "candlestick",
openField: "open",
highField: "high",
lowField: "low",
closeField: "close",
categoryField: "date"
}]
},
dataSource: {
data: [
{ date: new Date("2016/01/01"), open: 1, high: 3, low: 0.5, close: 2 },
{ date: new Date("2016/01/02"), open: 2, high: 4, low: 1.5, close: 3 }
]
}
});
</script>
In this article