BoxPlotSeriesView.OutlierMarkerKind Property
Gets or sets the outlier marker type.
Namespace: DevExpress.XtraCharts
Assembly: DevExpress.XtraCharts.v24.1.dll
NuGet Package: DevExpress.Charts
Declaration
[XtraChartsLocalizableCategory(XtraChartsCategory.Appearance)]
[XtraSerializableProperty]
public MarkerKind OutlierMarkerKind { get; set; }
Property Value
Type | Description |
---|---|
MarkerKind | The outlier marker type. |
Available values:
Name | Description |
---|---|
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:
Series boxPlotSeries = chartControl1.Series[0];
BoxPlotSeriesView boxPlotView = (BoxPlotSeriesView)boxPlotSeries.View;
boxPlotView.OutlierMarkerSize = 16;
boxPlotView.OutlierMarkerKind = MarkerKind.Hexagon;
Result:
See Also