series.xErrorHighField String
(default: "xErrorHigh")
The data item field which contains the series.errorBars xAxis high value.
The
xErrorHighField
option is supported when series.type is set to "scatter", "scatterLine" or "bubble".
Example
<div id="chart"></div>
<script>
$("#chart").kendoChart({
series: [{
type: "scatter",
xErrorLowField: "low",
xErrorHighField: "high",
data: [{x: 6.4, y: 13.4, low: 5, high: 7}, {x: 1.7, y: 11, low: 1, high: 3}, {x: 5.4, y: 8, low: 3, high: 6}]
}]
});
</script>