ValidationSettingsDialog.getCustomAnalysisWizard

Syntax

getCustomAnalysisWizard();

Description

The getCustomAnalysisWizard method returns the wizard that validates data by performing custom analysis of time series.

Comments

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

Example

Executing this example requires the ValidationSettingsDialog component named validationSettingsDialog (see Example of creating the ValidationSettingsDialog component). Show the wizard that validates data by performing custom analysis of time series in a separate dialog box:

// Get wizard for data validation by time series custom analysis 
var customAnalysisWizard = validationSettingsDialog.getCustomAnalysisWizard();
// Get DOM tree for this wizard
var dom = customAnalysisWizard.getDomNode();
// Set wizard style
PP.addClass(dom, "PPValidationSettingsDlgContent");
// Make wizard visible
customAnalysisWizard.show();
// Add the obtained wizard to the dialog
var dialog = new PP.Ui.Dialog({
    Caption: "Comparison by Expression",
    Content: customAnalysisWizard,
    Width: 780, // Dialog width	
});
// Display this dialog
dialog.show();

After executing the example the created dialog box shows the wizard that validates data by performing custom analysis of time series:

See also:

ValidationSettingsDialog