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

TopNOptions.ShowOthers Property

Gets or sets a value indicating whether it is necessary to show the “Others” series point.

Namespace: DevExpress.XtraCharts

Assembly: DevExpress.XtraCharts.v19.1.dll

Declaration

[XtraSerializableProperty]
public bool ShowOthers { get; set; }

Property Value

Type Description
Boolean

true, to show the “Others” series point; otherwise, false.

Property Paths

You can access this nested property as listed below:

Object Type Path to ShowOthers
Series
.TopNOptions.ShowOthers
SeriesBase
.TopNOptions.ShowOthers
SeriesTemplate
.TopNOptions.ShowOthers

Remarks

Note

The ShowOthers property works only for the Qualitative argument scale type.

The “Top N” feature is intended to visually represent only selected series points in a series, and is determined by the TopNOptions object returned by the SeriesBase.TopNOptions property. This feature is applicable only if the SeriesBase.TopNOptions‘s TopNOptions.Enabled property is set to true.

If this feature is enabled, then the TopNOptions.Mode property determines which property (TopNOptions.Count, TopNOptions.ThresholdValue or TopNOptions.ThresholdPercent) specifies how many series points will be visible in a chart. All other series points are combined into a single “Others” point, which can be visible or hidden, according to the ShowOthers property value. The text shown as an argument of the “Others” point is specified by the TopNOptions.OthersArgument property.

For more information, refer to Using The Top-N Feature.

See Also