Back to Devexpress

TopNMode Enum

corelibraries-devexpress-dot-xtracharts-08b497ae.md

latest2.6 KB
Original Source

TopNMode Enum

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

Declaration

csharp
[ResourceFinder(typeof(XtraChartsResFinder), "PropertyNamesRes")]
public enum TopNMode
vb
<ResourceFinder(GetType(XtraChartsResFinder), "PropertyNamesRes")>
Public Enum TopNMode

Members

NameDescription
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:

LibraryRelated API Members
Cross-Platform Class LibraryTopNOptions.Mode
WinForms ControlsTopNOptionsModel.Mode

Remarks

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

Mode

Display Top-N Values

DevExpress.XtraCharts Namespace