corelibraries-devexpress-dot-xtracharts-dot-boxplotseriesview-3d596f47.md
Gets or sets the outlier marker size.
Namespace : DevExpress.XtraCharts
Assembly : DevExpress.XtraCharts.v25.2.dll
NuGet Package : DevExpress.Charts
[XtraChartsLocalizableCategory(XtraChartsCategory.Appearance)]
public int OutlierMarkerSize { get; set; }
<XtraChartsLocalizableCategory(XtraChartsCategory.Appearance)>
Public Property OutlierMarkerSize As Integer
| Type | Description |
|---|---|
| Int32 |
The outlier marker size.
|
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;
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