Back to Devexpress

BoxPlotSeriesView.OutlierMarkerSize Property

corelibraries-devexpress-dot-xtracharts-dot-boxplotseriesview-3d596f47.md

latest2.0 KB
Original Source

BoxPlotSeriesView.OutlierMarkerSize Property

Gets or sets the outlier marker size.

Namespace : DevExpress.XtraCharts

Assembly : DevExpress.XtraCharts.v25.2.dll

NuGet Package : DevExpress.Charts

Declaration

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

Property Value

TypeDescription
Int32

The outlier marker size.

|

Remarks

Use the OutlierMarkerKind property to change the outlier marker type.

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