BoxPlotSeries2D.MeanLineStyle Property
In This Article
Specifies mean line style settings.
Namespace: DevExpress.Xpf.Charts
Assembly: DevExpress.Xpf.Charts.v24.2.dll
NuGet Package: DevExpress.Wpf.Charts
#Declaration
#Property Value
Type | Description |
---|---|
Line |
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