BubbleChart.ToolTipDelay

Syntax

ToolTipDelay: Integer;

Description

The ToolTipDelay property determines delay before a tooltip is displayed on mouse hovering.

Comments

Use JSON or the setToolTipDelay method to set the property value and the getToolTipDelay method to get the property value.

The property is set in milliseconds.

By default the value is 500.

Example

To execute this example, the HTML page must contain the BubbleChart component named bubbleChart (see Example of Creating the BubbleChart Component). Set delay before a tooltip is displayed:

// Set delay before a tooltip is displayed
bubbleChart.setToolTipDelay(1500);

After executing the example delay is set before a tooltip is displayed.

See also:

BubbleChart