WbkPropertyBarView.getSerieAttributesPanel

Syntax

getSerieAttributesPanel();

Description

The getSerieAttributesPanel method returns the Series Attributes panel of the Series tab.

Comments

The method returns an object of the PP.TS.Ui.MetaDataViewerPanel 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 Series Attributes panel:

// Get workbook parameters panel
var propertyBar = workbookBox.getPropertyBarView();
// Get the Series Attributes panel
var serieAttributesPanel = propertyBar.getSerieAttributesPanel();
// Display this panel
serieAttributesPanel.show();
// Expand panel
serieAttributesPanel.expand();

After executing the example the Series Attributes panel is displayed:

See also:

WbkPropertyBarView