Skip to main content
All docs
V23.2

TdxChartSimpleToolTipOptions.UseHintPause Property

Specifies if the Chart control displays a tooltip after a time interval defined at the application level.

Declaration

property UseHintPause: Boolean read; write; default False;

Property Value

Type Default Description
Boolean False
False
Default. A tooltip appears immediately once a user hovers the mouse pointer over a series or point.
True
A tooltip appears after a delay defined in the TApplication.HintPause property.

Remarks

Set the UseHintPause property to True to add a delay between mouse pointer positioning within a series or series point and the consequent tooltip display operation. You can use the TApplication.HintPause property to adjust this delay (in milliseconds).

Note

This delay has no effect when the mouse pointer moves between adjacent series values.

Examples

UseHintPause Value Example[1]
False (default) VCL Chart Control: No Tooltip Delay
True VCL Chart Control: A Standard Tooltip Delay Example

Default Value

The UseHintPause property’s default value is False.

Footnotes
  1. This example demonstrates different UseHintPause property values on the same simple series with the active Doughnut View.

See Also