showToolTip(serie: Number, coords: Object, timeout: Number);
serie. Data series number.
coords. Tooltip coordinates.
timeout. Timeout.
The showToolTip method shows tooltip of the specified data series.
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: