Back to Devexpress

BoxPlotSeriesView.OutlierMarkerKind Property

corelibraries-devexpress-dot-xtracharts-dot-boxplotseriesview-b09dc408.md

latest3.4 KB
Original Source

BoxPlotSeriesView.OutlierMarkerKind Property

Gets or sets the outlier marker type.

Namespace : DevExpress.XtraCharts

Assembly : DevExpress.XtraCharts.v25.2.dll

NuGet Package : DevExpress.Charts

Declaration

csharp
[XtraChartsLocalizableCategory(XtraChartsCategory.Appearance)]
public MarkerKind OutlierMarkerKind { get; set; }
vb
<XtraChartsLocalizableCategory(XtraChartsCategory.Appearance)>
Public Property OutlierMarkerKind As MarkerKind

Property Value

TypeDescription
MarkerKind

The outlier marker type.

|

Available values:

Show 11 items

NameDescription
Square

Specifies a square marker.

| | Diamond |

Specifies a diamond-shaped marker.

| | Triangle |

Specifies a triangular marker.

| | InvertedTriangle |

Specifies an inverted triangle marker.

| | Circle |

Specifies a circular marker.

| | Plus |

Specifies a plus-shaped marker.

| | Cross |

Specifies a cross-shaped marker.

| | Star |

Specifies a star-shaped marker.

| | Pentagon |

Specifies a pentagonal marker.

| | Hexagon |

Specifies a hexagonal marker.

| | ThinCross |

Specifies a thin cross-shaped marker.

|

Remarks

Use the OutlierMarkerSize property to change the outlier marker size.

The following example changes the outlier marker type and size:

csharp
Series boxPlotSeries = chartControl1.Series[0];
 BoxPlotSeriesView boxPlotView = (BoxPlotSeriesView)boxPlotSeries.View;
 boxPlotView.OutlierMarkerSize = 16;
 boxPlotView.OutlierMarkerKind = MarkerKind.Hexagon;
vb
Dim boxPlotSeries As Series = chartControl1.Series(0)
Dim boxPlotView As BoxPlotSeriesView = CType(boxPlotSeries.View, BoxPlotSeriesView)
boxPlotView.OutlierMarkerSize = 16
boxPlotView.OutlierMarkerKind = MarkerKind.Hexagon

Result:

See Also

BoxPlotSeriesView Class

BoxPlotSeriesView Members

DevExpress.XtraCharts Namespace