Skip to main content
A newer version of this page is available. .

TopNOptionsBase.ShowOthers Property

Gets or sets the value indicating whether a series should show the aggregated “Others” point. This is a dependency property.

Namespace: DevExpress.Xpf.Charts

Assembly: DevExpress.Xpf.Charts.v19.2.dll

Declaration

public bool ShowOthers { get; set; }

Property Value

Type Description
Boolean

true if the series should show the aggregated “Others” point; otherwise false

Property Paths

You can access this nested property as listed below:

Show 68 property paths
Object Type Path to ShowOthers
AreaFullStackedSeries2D
.TopNOptions.ShowOthers
AreaFullStackedSeries3D
.TopNOptions.ShowOthers
AreaSeries2D
.TopNOptions.ShowOthers
AreaSeries3D
.TopNOptions.ShowOthers
AreaStackedSeries2D
.TopNOptions.ShowOthers
AreaStackedSeries3D
.TopNOptions.ShowOthers
AreaStepFullStackedSeries2D
.TopNOptions.ShowOthers
AreaStepSeries2D
.TopNOptions.ShowOthers
AreaStepStackedSeries2D
.TopNOptions.ShowOthers
BarFullStackedSeries2D
.TopNOptions.ShowOthers
BarSeries2D
.TopNOptions.ShowOthers
BarSeries2DBase
.TopNOptions.ShowOthers
BarSeries3D
.TopNOptions.ShowOthers
BarSideBySideFullStackedSeries2D
.TopNOptions.ShowOthers
BarSideBySideSeries2D
.TopNOptions.ShowOthers
BarSideBySideSeries3D
.TopNOptions.ShowOthers
BarSideBySideStackedSeries2D
.TopNOptions.ShowOthers
BarStackedSeries2D
.TopNOptions.ShowOthers
BoxPlotSeries2D
.TopNOptions.ShowOthers
BubbleSeries2D
.TopNOptions.ShowOthers
BubbleSeries3D
.TopNOptions.ShowOthers
CandleStickSeries2D
.TopNOptions.ShowOthers
CircularAreaSeries2D
.TopNOptions.ShowOthers
CircularLineScatterSeries2D
.TopNOptions.ShowOthers
CircularLineSeries2D
.TopNOptions.ShowOthers
CircularRangeAreaSeries2D
.TopNOptions.ShowOthers
CircularSeries2D
.TopNOptions.ShowOthers
CircularSeriesBase2D
.TopNOptions.ShowOthers
FinancialSeries2D
.TopNOptions.ShowOthers
FunnelSeries2D
.TopNOptions.ShowOthers
LineFullStackedSeries2D
.TopNOptions.ShowOthers
LineScatterSeries2D
.TopNOptions.ShowOthers
LineSeries2D
.TopNOptions.ShowOthers
LineStackedSeries2D
.TopNOptions.ShowOthers
LineStepSeries2D
.TopNOptions.ShowOthers
MarkerSeries2D
.TopNOptions.ShowOthers
MarkerSeries3D
.TopNOptions.ShowOthers
NestedDonutSeries2D
.TopNOptions.ShowOthers
PieSeries
.TopNOptions.ShowOthers
PieSeries2D
.TopNOptions.ShowOthers
PieSeries3D
.TopNOptions.ShowOthers
PointSeries2D
.TopNOptions.ShowOthers
PointSeries3D
.TopNOptions.ShowOthers
PolarAreaSeries2D
.TopNOptions.ShowOthers
PolarLineScatterSeries2D
.TopNOptions.ShowOthers
PolarLineSeries2D
.TopNOptions.ShowOthers
PolarPointSeries2D
.TopNOptions.ShowOthers
PolarRangeAreaSeries2D
.TopNOptions.ShowOthers
RadarAreaSeries2D
.TopNOptions.ShowOthers
RadarLineScatterSeries2D
.TopNOptions.ShowOthers
RadarLineSeries2D
.TopNOptions.ShowOthers
RadarPointSeries2D
.TopNOptions.ShowOthers
RadarRangeAreaSeries2D
.TopNOptions.ShowOthers
RangeAreaSeries2D
.TopNOptions.ShowOthers
RangeBarOverlappedSeries2D
.TopNOptions.ShowOthers
RangeBarSeries2D
.TopNOptions.ShowOthers
RangeBarSideBySideSeries2D
.TopNOptions.ShowOthers
SegmentSeries2DBase
.TopNOptions.ShowOthers
Series
.TopNOptions.ShowOthers
SplineAreaFullStackedSeries2D
.TopNOptions.ShowOthers
SplineAreaSeries2D
.TopNOptions.ShowOthers
SplineAreaStackedSeries2D
.TopNOptions.ShowOthers
SplineSeries2D
.TopNOptions.ShowOthers
StockSeries2D
.TopNOptions.ShowOthers
WaterfallSeries2D
.TopNOptions.ShowOthers
XYSeries
.TopNOptions.ShowOthers
XYSeries2D
.TopNOptions.ShowOthers
XYSeries3D
.TopNOptions.ShowOthers

Remarks

Use the following markup to configure the “Top N” feature:

<dxc:PieSeries2D ArgumentDataMember="Name"
                 ValueDataMember="Area"
                 LegendTextPattern="{}{A}"
                 LabelsVisibility="True">
    <dxc:PieSeries2D.TopNOptions>
        <dxc:CountTopNOptions Count="5"
                              ShowOthers="True"
                              OthersArgument="Others"
                              dxc:PieSeries.OthersPointExplodedDistance="0.05"/>
    </dxc:PieSeries2D.TopNOptions>
</dxc:PieSeries2D>

The code above uses the following properties:

Property Description
Series.TopNOptions Gets or sets the Top N and Others series’ options. This is a dependency property.
CountTopNOptions The “Top N and Others“ feature options that selects first N largest points.
CountTopNOptions.Count Gets or sets the number of points with the largest values that the series should show.
TopNOptionsBase.ShowOthers Gets or sets the value indicating whether a series should show the aggregated “Others” point. This is a dependency property.
TopNOptionsBase.OthersArgument Gets or sets the value that the aggregated “Others” point uses as the point’s argument. This is a dependency property.
PieSeries.OthersPointExplodedDistance Gets or sets the “Others” slice offset from the pie center.
See Also