corelibraries-devexpress-dot-xtracharts-dot-boxplotseriesview-b09dc408.md
Gets or sets the outlier marker type.
Namespace : DevExpress.XtraCharts
Assembly : DevExpress.XtraCharts.v25.2.dll
NuGet Package : DevExpress.Charts
[XtraChartsLocalizableCategory(XtraChartsCategory.Appearance)]
public MarkerKind OutlierMarkerKind { get; set; }
<XtraChartsLocalizableCategory(XtraChartsCategory.Appearance)>
Public Property OutlierMarkerKind As MarkerKind
| Type | Description |
|---|---|
| MarkerKind |
The outlier marker type.
|
Available values:
Show 11 items
| 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.
|
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;
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