WbkPropertyBarView.getSeriesAttributesPanel

Syntax

getSeriesAttributesPanel();

Description

The getSeriesAttributesPanel method returns the Data panel of the Format tab.

Comments

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

Example

To execute the example, the HTML page must contain the WorkbookBox component named workbookBox (see Example of Creating the WorkbookBox Component. Display the Data panel of the Format tab:

// Get workbook properties panel
var propertyBar = workbookBox.getPropertyBarView();
// Get the Data panel of the Format tab
var seriesAttributesPanel = propertyBar.getSeriesAttributesPanel();
// Display this panel
seriesAttributesPanel.show();
// Expand panel
seriesAttributesPanel.expand();

After executing the example the Data panel of the Format tab is displayed:

See also:

WbkPropertyBarView