series.closeField String
(default: "close")
The data field containing the close value.
The
closeField
option is supported when series.type is set to "candlestick" or "ohlc".
Example - set the chart series high field
<div id="chart"></div>
<script>
$("#chart").kendoChart({
series: [{
type: "candlestick",
closeField: "closePrice",
data: [
{ open: 1, high: 2, low: 0.5, closePrice: 1.5 },
{ open: 2, high: 3, low: 1, closePrice: 1.5 }
]
}]
});
</script>