ChartSerie.Tooltip

Syntax

Tooltip: PP.Ui.ChartTooltip

Description

The Tooltip property determines tooltip for data series.

Comments

Use JSON or the setTooltip method to set the property value and the getTooltip method to get the property value.

Example

To execute this example, the HTML page must contain the BubbleChart component named bubbleChart (see Example of Creating the BubbleChart Component). Get tooltip for the data series of the bubble chart first item and show this tooltip:

// Get tooltip for the data series of the bubble chart first item
var tooltip = bubbleChart.getSeries()[0].getTooltip();
// Show the tooltip
tooltip.show();

As a result, a tooltip for the first item data series is shown in the bubble chart:

See also:

ChartSerie