MapChart.ToolTipDelay

Syntax

ToolTipDelay: Integer;

Description

The ToolTipDelay property determines delay before a tooltip is displayed.

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 it has the value 500.

Example

To execute the example the HTML page must contain the MapChart component named map containing bar factors (see MapBar Constructor). Set delay before a tooltip is displayed:

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

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

See also:

MapChart