Back to Devexpress

BoxPlotSeries2D.MeanLineStyle Property

wpf-devexpress-dot-xpf-dot-charts-dot-boxplotseries2d-5a73ac6c.md

latest1.6 KB
Original Source

BoxPlotSeries2D.MeanLineStyle Property

Specifies mean line style settings.

Namespace : DevExpress.Xpf.Charts

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

NuGet Package : DevExpress.Wpf.Charts

Declaration

csharp
public LineStyle MeanLineStyle { get; set; }
vb
Public Property MeanLineStyle As LineStyle

Property Value

TypeDescription
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:

xaml
<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

BoxPlotSeries2D Class

BoxPlotSeries2D Members

DevExpress.Xpf.Charts Namespace