Back to Devexpress

How to: Add the Standard Error Bars Indicator to a Chart

wpf-117119-controls-and-libraries-charts-suite-chart-control-examples-chart-elements-how-to-add-the-standard-error-bars-indicator-to-a-chart.md

latest804 B
Original Source

How to: Add the Standard Error Bars Indicator to a Chart

  • Jun 07, 2019

This example demonstrates how to plot Standard Error Bars on the chart.

To do this, add a StandardErrorBars object to the series XYSeries2D.Indicators collection.

xaml
<dxc:PointSeries2D x:Name="pointSeries" DisplayName="Daytime Temperatures in July">
    <dxc:PointSeries2D.Indicators>
        <dxc:StandardErrorBars Direction="Both" 
                               EndStyle="Cap"
                               ShowInLegend="True"
                               LegendText="Standard Error"/>
    </dxc:PointSeries2D.Indicators>
</dxc:PointSeries2D>