DXSeriesHintOptionsBase Class
The base class for all series hint options.
Declaration
@interface DXSeriesHintOptionsBase
Properties
enabled Property
Gets or sets a value indicating whether the hint is enabled for the series.
Declaration
@property (readwrite) BOOL enabled
Property Value
Type | Description |
---|---|
BOOL | YES if the hint is enabled for the series; otherwise NO. |
pointTextPattern Property
Gets or sets the text pattern that specifies the hint text for a series’ hint.
Declaration
@property (readwrite, nullable) NSString *pointTextPattern
Property Value
Type | Description |
---|---|
NSString * | The text pattern that specifies the hint text for a series point’s hint. |
Remarks
The following placeholders are available for a tooltip’s text pattern:
Placeholder | Description |
---|---|
{S} | Displays a series name. |
{A} | Displays a series point argument. |
{L} | Displays a pie series point label. |
{V} | Displays a series point value. |
{VP} | Displays a series point value as percentages. |
{W} | Displays a Bubble series point weight. |
{O} | Displays a financial series point open value. |
{H} | Displays a financial series point high value. |
{L} | Displays a financial series point low value. |
{C} | Displays a financial series point close value. |
{HV} | Displays a range bar series point max value. |
{LV} | Displays a range bar series point min value. |
Note
These values can be formatted using default format strings after the $
sign.
For example, in the {VP$#.##}
string, VP
is a placeholder, $
is a format string separator, and #.##
is a format string.
Note that you can format values which replace placeholders using the default format patterns. For example, to show two decimal places, use the {V$.##} pattern.