Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TopNOptionsModel.Mode Property

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

Namespace: DevExpress.XtraCharts.Designer

Assembly: DevExpress.XtraCharts.v24.2.Wizard.dll

NuGet Package: DevExpress.Win.Charts

#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
See Also