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

TopNOptionsModel.Mode Property

Gets or sets the value of the TopNOptions.Mode within the model.

Namespace: DevExpress.XtraCharts.Designer

Assembly: DevExpress.XtraCharts.v19.1.Wizard.dll

Declaration

[PropertyForOptions]
public TopNMode Mode { get; set; }

Property Value

Type Description
TopNMode

The value specifying how to determine the total count of top N series points.

Available values:

Name Description
Count

The TopNOptions.Count property value is used. This value explicitly specifies the total number of top N series points.

ThresholdValue

The TopNOptions.ThresholdValue property value is used. This value implicitly specifies the total number of top N series points, so that only series points, whose values are greater than the ThresholdValue property’s value, are considered as top N series points.

ThresholdPercent

The TopNOptions.ThresholdPercent property value is used. This value implicitly specifies the total number of top N series points, so that only series points, whose value’s ratio to the summary of all series points values is greater than the ThresholdPercent property’s value, are considered as top N series points.

Property Paths

You can access this nested property as listed below:

Object Type Path to Mode
SeriesBaseModel
.TopNOptions.Mode
SeriesModel
.TopNOptions.Mode
SeriesTemplateModel
.TopNOptions.Mode
See Also