TdxSparklineMinMaxRangeType Enum
Enumerates display range calculation modes for the Y-axis common to all visible series.
Declaration
TdxSparklineMinMaxRangeType = (
mmrtAuto,
mmrtZeroBasedAuto,
mmrtCustom
);
Members
| Name |
|---|
mmrtAuto
|
mmrtZeroBasedAuto
|
mmrtCustom
|
Remarks
Options include:
| Value | Description |
|---|---|
| mmrtAuto | The display range is calculated automatically based on the minimum and maximum values in all displayed series |
| mmrtCustom | You can set the upper and lower limits of the display range via the Series.MinValue and Series.MaxValue properties. |
| mmrtZeroBasedAuto | The display range uses 0 and the maximum value across all visible series as its lower and upper bounds in this mode. |
The sparkline properties’ Series.MinMaxRangeType and Categories.MinMaxRangeType properties reference the TdxSparklineMinMaxRangeType type.
See Also