series.lowFieldString
(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 low field
<div id="chart"></div>
<script>
$("#chart").kendoChart({
series: [
{
type: "candlestick",
openField: "open",
closeField: "close",
lowField: "lowPrice",
highField: "high",
data: [
{ open: 10, close: 12, lowPrice: 8, high: 15 },
{ open: 12, close: 11, lowPrice: 9, high: 14 }
]
}
]
});
</script>
In this article