StatisticalOutliersWizard Constructor

Syntax

PP.TS.Ui.StatisticalOutliersWizard(setttings: Object);

Parameters

settings. JSON object that contains values of class properties.

Description

The StatisticalOutliersWizard constructor creates an instance of the StatisticalOutliersWizard class.

Example

To execute the example, the HTML page must contain the WorkbookBox component named workbookBox (see Example of Creating the WorkbookBox Component). Create the wizard and show it in a dialog box:

/* Create a wizard for validation by analysis of 
   statistical outliers of time series data */
var statisticalOutliersWizard = new PP.TS.Ui.StatisticalOutliersWizard();
// Get DOM tree for this wizard
var dom = statisticalOutliersWizard.getDomNode();
// Set wizard style
PP.addClass(dom, "PPValidationSettingsDlgContent");
// Add the created wizard to the dialog
var dialog = new PP.Ui.Dialog({
    Caption: "Statistical outlier analysis wizard", // Dialog title
    Content: statisticalOutliersWizard, // Dialog contents
    Width: 500, // Dialog width
    Height: 180 // Dialog height
});
// Display this dialog
dialog.show();

After executing the example the data validation wizard that analyzes statistical outliers of time series data is created and placed in a dialog box:

See also:

StatisticalOutliersWizard