Skip to main content

BoxPlotSeriesView.OutlierMarkerSize Property

Gets or sets the outlier marker size.

Namespace: DevExpress.XtraCharts

Assembly: DevExpress.XtraCharts.v23.2.dll

NuGet Package: DevExpress.Charts

Declaration

[XtraChartsLocalizableCategory(XtraChartsCategory.Appearance)]
public int OutlierMarkerSize { get; set; }

Property Value

Type Description
Int32

The outlier marker size.

Remarks

Use the OutlierMarkerKind property to change the outlier marker type.

The following example changes the outlier marker type and size:

 Series boxPlotSeries = chartControl1.Series[0];
 BoxPlotSeriesView boxPlotView = (BoxPlotSeriesView)boxPlotSeries.View;
 boxPlotView.OutlierMarkerSize = 16;
 boxPlotView.OutlierMarkerKind = MarkerKind.Hexagon;

Result:

See Also