WbkPropertyBarView.showChartMaster

Syntax

showChartMaster();

Description

The showChartMaster method displays chart 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 chart setup wizard:

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

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

See also:

WbkPropertyBarView