TdxChartSeriesTopNOptionsMode Enum
Enumerates available Top N value display modes for simple series.
Declaration
TdxChartSeriesTopNOptionsMode = (
Count,
ThresholdValue,
ThresholdPercent
);
Members
| Name | Description |
|---|---|
Count
|
Default. In this mode, a simple series displays a number of first points as separate slices according to their order in the Points collection if series points are unsorted.
If you assign a non-integer value to the TopNOptions.Value property in this mode, the property setter truncates the fractional part.
|
ThresholdValue
|
All series points whose values exceed the TopNOptions.Value property value are displayed as separate slices. The TopNOptions.Value property setter does not impose limitations on assigned values in this mode.
|
ThresholdPercent
|
All series points whose values exceed the TopNOptions.Value property value (as a percentage) are displayed as separate simple series slices. The TopNOptions.Value property value can be within the range between
|
Remarks
Different TdxChartSeriesTopNOptionsMode values change interpretation of the TdxChartSeriesTopNOptions.Value property value.
Note
TdxChartSeriesTopNOptionsMode is a scoped enumeration type. Use the type name together with a scope resolution token (. in Delphi or :: in C++Builder) followed by an enumeration value to refer to this value. For example, use TdxChartSeriesTopNOptionsMode.ThresholdValue (in Delphi) or TdxChartSeriesTopNOptionsMode::ThresholdValue (in C++Builder) to refer to the ThresholdValue value in code.
Direct TdxChartSeriesTopNOptionsMode Type Reference
The TdxChartSeriesTopNOptions.Mode property references the TdxChartSeriesTopNOptionsMode type.