WbkPropertyBarView.getEquationAutoFitPanel

Syntax

getEquationAutoFitPanel();

Description

The getEquationAutoFitPanel method returns the exponential smoothing parameters autofit panel.

Comments

This method returns an object of the PP.TS.Ui.EquationAutoFitPanel 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 parameters autofit panel for exponential smoothing:

// Get workbook properties panel
var propertyBar = workbookBox.getPropertyBarView();
// Get exponential smoothing parameter autofit panel
var equationAutoFitPanel = propertyBar.getEquationAutoFitPanel();
// Display panel
equationAutoFitPanel.show();
// Expand panel
equationAutoFitPanel.expand();

After executing the example the exponential smoothing parameters autofit panel is shown:

See also:

WbkPropertyBarView