corelibraries-devexpress-dot-xtracharts-08b497ae.md
Lists the values that specify how to determine the total number of top N series points.
Namespace : DevExpress.XtraCharts
Assembly : DevExpress.XtraCharts.v25.2.dll
NuGet Package : DevExpress.Charts
[ResourceFinder(typeof(XtraChartsResFinder), "PropertyNamesRes")]
public enum TopNMode
<ResourceFinder(GetType(XtraChartsResFinder), "PropertyNamesRes")>
Public Enum TopNMode
| 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.
|
The following properties accept/return TopNMode values:
| Library | Related API Members |
|---|---|
| Cross-Platform Class Library | TopNOptions.Mode |
| WinForms Controls | TopNOptionsModel.Mode |
Values listed by the TopNMode enumeration are used to set the TopNOptions.Mode property. For more information, refer to Using The Top-N Feature.
See Also