series.errorLowField String
(default: "errorLow")
The data item field which contains the series.errorBars low value.
The
errorLowField
option is supported when series.type is set to "bar", "column", "line" or "area".
Example
<div id="chart"></div>
<script>
$("#chart").kendoChart({
series: [{
type: "column",
errorLowField: "low",
errorHighField: "high",
data: [{value: 4.743, low: 4.5, high: 5}, {value: 7.295, low: 7, high: 8}, {value: 6.376, low: 5, high: 6.5}]
}]
});
</script>