getStatisticalOutliersWizard();
The getStatisticalOutliersWizard method returns the data validation wizard that validates data by performing analysis of statistical outliers of time series data.
This method returns an object of the PP.TS.Ui.StatisticalOutliersWizard type.
Executing this example requires the ValidationSettingsDialog component named validationSettingsDialog (see Example of creating the ValidationSettingsDialog component). Show the data validation wizard that analyzes statistical outliers of time series data:
/* Get wizard for validation by analysis of
statistical outliers of time series data */
var statisticalOutliersWizard = validationSettingsDialog.getStatisticalOutliersWizard();
// Get DOM tree for this wizard
var dom = statisticalOutliersWizard.getDomNode();
// Set wizard style
PP.addClass(dom, "PPValidationSettingsDlgContent");
// Make wizard visible
statisticalOutliersWizard.show();
// Add the obtained wizard to the dialog
var dialog = new PP.Ui.Dialog({
Content: statisticalOutliersWizard,
Caption: "Statistical outlier wizard analysis", // Dialog title
Width: 500, // Dialog width
Height: 180 // Dialog height
});
// Display this dialog
dialog.show();
After executing the example the created dialog box shows wizard that validates data by analyzing statistical outliers of time series data:

See also: