WbkPropertyBarView.getEquationSmoothingSlidingPanel

Syntax

getEquationSmoothingSlidingPanel();

Description

The getEquationSmoothingSlidingPanel method returns the Moving Average panel.

Comments

This method returns an object of the PP.TS.Ui.EquationSmoothingSlidingPanel 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 Moving Average panel:

// Get workbook properties panel
var propertyBar = workbookBox.getPropertyBarView();
// Get the Moving Average panel
var equationSmoothingSlidingPanel = propertyBar.getEquationSmoothingSlidingPanel();
// Display this panel
equationSmoothingSlidingPanel.show();
// Expand panel
equationSmoothingSlidingPanel.expand();

The Moving Average panel is shown as the result of the example execution:

See also:

WbkPropertyBarView