RatingChart.showToolTip

Syntax

showToolTip(serie: Number, coords: Object, timeout: Number);

Parameters

serie. Data series number.

coords. Tooltip coordinates.

timeout. Timeout.

Description

The showToolTip method shows tooltip of the specified data series.

Example

Executing the example requires that the page contains the RatingChart component named ratingChart (see Example of Creating the RatingChart Component). Show tooltip with specified parameters:

// Determine coordinates where tooltip will be shown
coords = {X: 100, Y: 100}
// Show tooltip of the first data series
ratingChart.showToolTip(1, coords, 1);

After executing the example tooltip of the first rating chart data series will be shown.

See also:

RatingChart