Skip to main content

BoxPlotSeries2D.Values Attached Property

Specifies the box plot point values. This property is attached to the SeriesPoint class.

Namespace: DevExpress.Xpf.Charts

Assembly: DevExpress.Xpf.Charts.v23.2.dll

NuGet Package: DevExpress.Wpf.Charts

Declaration

Returns

Type Description
BoxPlotValuesBase

A BoxPlotValuesBase descendant.

Remarks

You can use the following value types to specify the Values property:

Example

The following example shows how to create a Box Plot chart in XAML:

<dxc:ChartControl x:Name="chart">
    <dxc:XYDiagram2D>
        <dxc:BoxPlotSeries2D DisplayName="Box Plot"                           
                             CapWidthPercentage="50" 
                             BoxWidth="0.5"
                             x:Name="boxPlotSeries">
            <dxc:SeriesPoint Argument="June">
                <dxc:BoxPlotSeries2D.Values>
                    <dxc:BoxPlotNumericValues Min="46" Max="94" 
                                              Quartile1="64" Quartile3="76" 
                                              Median="70" Mean="73" 
                                              Outliers="30, 96.3, 99.56"/>
                </dxc:BoxPlotSeries2D.Values>
            </dxc:SeriesPoint>
            <!-- Add other points here. -->
        </dxc:BoxPlotSeries2D>
    </dxc:XYDiagram2D>
</dxc:ChartControl>
See Also