TreeChartMaster.getTooltipsPanel

Syntax

getTooltipsPanel(): PP.Ui.TooltipsPanel;

Description

The getTooltipsPanel method returns tooltips panel.

Comments

The method returns object of the type PP.Ui.TooltipsPanel.

Example

To execute the example, the HTML page must contain the ExpressBox component named expressBox (see Example of Creating the ExpressBox Component) and the Tree Map Visualizer should be selected.

// Get side panel master
bar = expressBox.getPropertyBarView();
master = bar.getTreeMapMaster();
// Get tooltips panel
tooltipP = master.getTooltipsPanel();
// -> PP.Ui.TreeTooltipsPanel {_Master: PP.Ui.TreeMapMaster, _HasBranches: true, _tooltipsMaskBranchesIsChanged: false, _ImagePath: "../build/img/", _ResourceKey: "visMasterTooltips"…}

After executing the example, tooltips panel object view of the side panel is obtained.

See also:

TreeChartMaster