Skip to main content
A newer version of this page is available. .

BoxPlotSeriesView.OutlierMarkerKind Property

Gets or sets the outlier marker type.

Namespace: DevExpress.XtraCharts

Assembly: DevExpress.XtraCharts.v21.2.dll

NuGet Package: DevExpress.Charts

Declaration

[XtraChartsLocalizableCategory(XtraChartsCategory.Appearance)]
public MarkerKind OutlierMarkerKind { get; set; }

Property Value

Type Description
MarkerKind

The outlier marker type.

Available values:

Show 11 items
Name Description
Square

Specifies a square marker.

MarkerKind.Square

Diamond

Specifies a diamond-shaped marker.

MarkerKind.Diamond

Triangle

Specifies a triangular marker.

MarkerKind.Triangle

InvertedTriangle

Specifies an inverted triangle marker.

MarkerKind.InvertedTriangle

Circle

Specifies a circular marker.

MarkerKind.Circle

Plus

Specifies a plus-shaped marker.

MarkerKind.Plus

Cross

Specifies a cross-shaped marker.

MarkerKind.Cross

Star

Specifies a star-shaped marker.

MarkerKind.Star

Pentagon

Specifies a pentagonal marker.

MarkerKind.Pentagon

Hexagon

Specifies a hexagonal marker.

MarkerKind.Hexagon

ThinCross

Specifies a thin cross-shaped marker.

MarkerKind.ThinCross

Remarks

Use the OutlierMarkerSize property to change the outlier marker size.

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