TopNMode Enum
Lists the values that specify how to determine the total number of top N series points.
Namespace: DevExpress.XtraCharts
Assembly: DevExpress.XtraCharts.v24.1.dll
NuGet Package: DevExpress.Charts
Declaration
[ResourceFinder(typeof(XtraChartsResFinder), "PropertyNamesRes")]
[TypeConverter(typeof(EnumTypeConverter))]
public enum TopNMode
Members
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. |
Related API Members
The following properties accept/return TopNMode values:
Library | Related API Members |
---|---|
Cross-Platform Class Library | TopNOptions.Mode |
WinForms Controls | TopNOptionsModel.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.