RatingChartSerie.getToolTipValues

Syntax

getToolTipValues(): Object;

Description

The getToolTipValues method returns data series tooltip.

Example

Executing the example requires that the page contains the RatingChart component named ratingChart (see Example of Creating the RatingChart Component). Get tooltip of the first data series:

serie = ratingChart.getSerie(0);
serie.getToolTipValues();
// -> Object {Index: 1, Name: "Argentine", Value: 8609.72, PrevIndex: NaN, ValueAttributeName: "FACT"}

After executing the example the console displays information contained in the tooltip of the first data series.

See also:

RatingChartSerie