Series.errorBars
configurationThe error bars of the chart series.
The
errorBarsoption is supported when series.type is set to "bar", "column", "line", "area", "scatter", "scatterLine" or "bubble".
series.errorBars
Objectseries.errorBars.color
StringThe color of the error bars. Accepts a valid CSS color string, including hex and rgb.
series.errorBars.endCaps
BooleanIf set to false, the error bars caps will not be displayed. By default the caps are visible.
Default: true
series.errorBars.line
ObjectThe error bars line options.
series.errorBars.value
String|Number|Array|FunctionThe error bars value.
The
valueoption is supported when series.type is set to "bar", "column", "line" or "area".
The following value types are supported:
- "stderr" - the standard error of the series values will be used to calculate the point low and high value
- "stddev(n)" - the standard deviation of the series values will be used to calculate the point low and high value. A number can be specified between the parentheses, that will be multiplied by the calculated standard deviation.
- "percentage(n)" - a percentage of the point value
- A number that will be subtracted/added to the point value
- An array that holds the low and high difference from the point value
- A function that returns the errorBars point value
series.errorBars.visual
FunctionA function that can be used to create a custom visual for the error bars. The available argument fields are:
- rect - the
kendo.geometry.Rectthat defines where the visual should be rendered. - options - the error bar options.
- createVisual - a function that can be used to get the default visual.
- low - the error bar low value.
- high - the error bar high value.
- sender - the chart instance.
series.errorBars.xValue
String|Number|Array|FunctionThe xAxis error bars value. See the series.errorBars.value option for a list of the supported value types.
The
xValueoption is supported when series.type is set to "scatter", "scatterLine" or "bubble".
series.errorBars.yValue
String|Number|Array|FunctionThe yAxis error bars value. See the series.errorBars.value option for a list of the supported value types.
The
yValueoption is supported when series.type is set to "scatter", "scatterLine" or "bubble".