<kendo:chart-seriesItem-errorBars>

The error bars of the chart series.

Example

<kendo:chart-seriesItem>
    <kendo:chart-seriesItem-errorBars></kendo:chart-seriesItem-errorBars>
</kendo:chart-seriesItem>

Configuration Attributes

color java.lang.String

The color of the error bars. Accepts a valid CSS color string, including hex and rgb.

Example

<kendo:chart-seriesItem-errorBars color="color">
</kendo:chart-seriesItem-errorBars>

endCaps boolean

If set to false, the error bars caps will not be displayed. By default the caps are visible.

Example

<kendo:chart-seriesItem-errorBars endCaps="endCaps">
</kendo:chart-seriesItem-errorBars>

value java.lang.String

The error bars value.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 or A function that returns the errorBars point value.

Example

<kendo:chart-seriesItem-errorBars value="value">
</kendo:chart-seriesItem-errorBars>

visual java.lang.String

A function that can be used to create a custom visual for the error bars. The available argument fields are: rect - the kendo.geometry.Rect that 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. or sender - the chart instance..

Example

<kendo:chart-seriesItem-errorBars visual="visual">
</kendo:chart-seriesItem-errorBars>

xValue java.lang.String

The xAxis error bars value. See the series.errorBars.value option for a list of the supported value types.

Example

<kendo:chart-seriesItem-errorBars xValue="xValue">
</kendo:chart-seriesItem-errorBars>

yValue java.lang.String

The yAxis error bars value. See the series.errorBars.value option for a list of the supported value types.

Example

<kendo:chart-seriesItem-errorBars yValue="yValue">
</kendo:chart-seriesItem-errorBars>

Configuration JSP Tags

kendo:chart-seriesItem-errorBars-line

The error bars line options.

More documentation is available at kendo:chart-seriesItem-errorBars-line.

Example

<kendo:chart-seriesItem-errorBars>
    <kendo:chart-seriesItem-errorBars-line></kendo:chart-seriesItem-errorBars-line>
</kendo:chart-seriesItem-errorBars>

Event Attributes

value String

The error bars value.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 or A function that returns the errorBars point value.

Example

<kendo:chart-seriesItem-errorBars value="handle_value">
</kendo:chart-seriesItem-errorBars>
<script>
    function handle_value(e) {
        // Code to handle the value event.
    }
</script>

visual String

A function that can be used to create a custom visual for the error bars. The available argument fields are: rect - the kendo.geometry.Rect that 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. or sender - the chart instance..

Example

<kendo:chart-seriesItem-errorBars visual="handle_visual">
</kendo:chart-seriesItem-errorBars>
<script>
    function handle_visual(e) {
        // Code to handle the visual event.
    }
</script>

xValue String

The xAxis error bars value. See the series.errorBars.value option for a list of the supported value types.

Example

<kendo:chart-seriesItem-errorBars xValue="handle_xValue">
</kendo:chart-seriesItem-errorBars>
<script>
    function handle_xValue(e) {
        // Code to handle the xValue event.
    }
</script>

yValue String

The yAxis error bars value. See the series.errorBars.value option for a list of the supported value types.

Example

<kendo:chart-seriesItem-errorBars yValue="handle_yValue">
</kendo:chart-seriesItem-errorBars>
<script>
    function handle_yValue(e) {
        // Code to handle the yValue event.
    }
</script>

Event Tags

kendo:chart-seriesItem-errorBars-value

The error bars value.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 or A function that returns the errorBars point value.

Example

<kendo:chart-seriesItem-errorBars>
    <kendo:chart-seriesItem-errorBars-value>
        <script>
            function(e) {
                // Code to handle the value event.
            }
        </script>
    </kendo:chart-seriesItem-errorBars-value>
</kendo:chart-seriesItem-errorBars>

kendo:chart-seriesItem-errorBars-visual

A function that can be used to create a custom visual for the error bars. The available argument fields are: rect - the kendo.geometry.Rect that 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. or sender - the chart instance..

Example

<kendo:chart-seriesItem-errorBars>
    <kendo:chart-seriesItem-errorBars-visual>
        <script>
            function(e) {
                // Code to handle the visual event.
            }
        </script>
    </kendo:chart-seriesItem-errorBars-visual>
</kendo:chart-seriesItem-errorBars>

kendo:chart-seriesItem-errorBars-xValue

The xAxis error bars value. See the series.errorBars.value option for a list of the supported value types.

Example

<kendo:chart-seriesItem-errorBars>
    <kendo:chart-seriesItem-errorBars-xValue>
        <script>
            function(e) {
                // Code to handle the xValue event.
            }
        </script>
    </kendo:chart-seriesItem-errorBars-xValue>
</kendo:chart-seriesItem-errorBars>

kendo:chart-seriesItem-errorBars-yValue

The yAxis error bars value. See the series.errorBars.value option for a list of the supported value types.

Example

<kendo:chart-seriesItem-errorBars>
    <kendo:chart-seriesItem-errorBars-yValue>
        <script>
            function(e) {
                // Code to handle the yValue event.
            }
        </script>
    </kendo:chart-seriesItem-errorBars-yValue>
</kendo:chart-seriesItem-errorBars>
In this article
Not finding the help you need?