WbkPropertyBarView.showGaugeMaster

Syntax

showGaugeMaster();

Description

The showGaugeMaster method displays speedometer setup wizard.

Example

To execute the example, the HTML page must contain the WorkbookBox component named workbookBox (see Example of Creating the WorkbookBox Component), and all the workbook views must be displayed. Display speedometer setup wizard:

// Get workbook properties panel
propertyBarView = workbookBox.getPropertyBarView();
// Hide all wizards
propertyBarView.hideAllMasters();
// Display speedometer setup wizard
propertyBarView.showGaugeMaster();

After executing the example the workbook side panel displays the speedometer setup wizard.

See also:

WbkPropertyBarView