Skip to main content
A newer version of this page is available. .
All docs
V20.2

BoxPlotSeries2D.MeanLineStyle Property

Specifies mean line style settings.

Namespace: DevExpress.Xpf.Charts

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

NuGet Packages: DevExpress.WindowsDesktop.Wpf.Charts, DevExpress.Wpf.Charts

Declaration

public LineStyle MeanLineStyle { get; set; }

Property Value

Type Description
LineStyle

Contains mean line style settings.

Remarks

See the following help topic for more information about line style settings: LineStyle.

The markup below changes the mean line thickness and dash style:

<dxc:BoxPlotSeries2D ... MeanLineVisible="True">
    <dxc:BoxPlotSeries2D.MeanLineStyle>
        <dxc:LineStyle Thickness="2" DashCap="Flat">
            <dxc:LineStyle.DashStyle>
                <DashStyle Dashes="2 1 5 1"/>
            </dxc:LineStyle.DashStyle>
        </dxc:LineStyle>
    </dxc:BoxPlotSeries2D.MeanLineStyle>
</dxc:BoxPlotSeries2D>                    

Result:

See Also