WbkPropertyBarView.getPeriodSeriesViewPanel

Syntax

getPeriodSeriesViewPanel();

Description

The getPeriodSeriesViewPanel method returns the panel used to manage workbook attributes.

Comments

This method returns an object of the PP.TS.Ui.PeriodSeriesViewMaster type.

Example

To execute the example, the HTML page must contain the WorkbookBox component named workbookBox (see Example of Creating the WorkbookBox Component. Show the panel used to control workbook attributes:

// Get workbook properties panel
var propertyBar = workbookBox.getPropertyBarView();
// Get panel used to control workbook attributes
var periodSeriesViewPanel = propertyBar.getPeriodSeriesViewPanel();
// Display this panel
periodSeriesViewPanel.show();

After executing the example the panel used to manage workbook attributes opens:

See also:

WbkPropertyBarView