Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
115
Confidence Intervals, Error Bars, Filled Area
posted

Hello,

I am working on an WPF application dedicated to Data Mining and Modeling. One critical information we have to display on chart is Confidence Intervals: [Ymin, Ymax], and one interesting way to do that is to fill the area between Ymin and Ymax curves (see grey area in attached screenshot). Brushes and opacity will be great companion for that (in case of multiple lines at a time...)

Anyway, according to my understanding of Infragistics Wpf Chart, this type of feature is not in place but might be done ... So, could you please comment on that and tell me How to achieve this type of representation?

Another missing feature is around error display (error bars in Excel). Any plan on that one ?

Best regards

Rodolphe

Parents
  • 17605
    posted

    Currently, XamChart doesn’t support Range chart. But you can try using something like:

      <igChart:XamChart x:Name="xamChart1">

                <igChart:XamChart.Series>

                    <igChart:Series ChartType="StackedArea" Fill="Transparent" Stroke="Transparent">

                        <igChart:Series.DataPoints>

                            <igChart:DataPoint Value="50" />

                            <igChart:DataPoint Value="10" />

                            <igChart:DataPoint Value="100"/>

                            <igChart:DataPoint Value="20" />

                            <igChart:DataPoint Value="30" />

                        </igChart:Series.DataPoints>

                    </igChart:Series>

                    <igChart:Series ChartType="StackedArea">

                        <igChart:Series.DataPoints>

                            <igChart:DataPoint Value="150" />

                            <igChart:DataPoint Value="110" />

                            <igChart:DataPoint Value="200"/>

                            <igChart:DataPoint Value="30" />

                            <igChart:DataPoint Value="40" />

                        </igChart:Series.DataPoints>

                    </igChart:Series>

                </igChart:XamChart.Series>

            </igChart:XamChart>

     

    If you want to request the error bars as an official feature then please visit this page:

    http://devcenter.infragistics.com/protected/requestfeature.aspx

Reply Children