series.lowField String
(default: "low")
The data field containing the low value.
The
lowField
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",
openField: "open",
closeField: "lowPrice",
lowField: "low",
highField: "high",
data: [
{ open: 1, high: 2, low: 0.5, lowPrice: 1.5},
{ open: 2, high: 3, low: 1, lowPrice: 1.5}
]
}
]
});
</script>