windowsforms-devexpress-dot-xtracharts-dot-designer-dot-topnoptionsmodel.md
Gets or sets the value of the TopNOptions.Mode within the model.
Namespace : DevExpress.XtraCharts.Designer
Assembly : DevExpress.XtraCharts.v25.2.Wizard.dll
NuGet Package : DevExpress.Win.Charts
[PropertyForOptions]
public TopNMode Mode { get; set; }
<PropertyForOptions>
Public Property Mode As TopNMode
| 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.
|
You can access this nested property as listed below:
| Object Type | Path to Mode |
|---|---|
| SeriesBaseModel |
.TopNOptions .Mode
|
See Also