ValidationSettingsDialog.getCorrelationWizard

Syntax

getCorrelationWizard();

Description

The getCorrelationWizard method returns wizard that validates data by analyzing their correlation dependence.

Comments

This method returns a PP.TS.Ui.RatioWizard value.

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 analysis of their correlation dependence in a separate dialog box:

// Get wizard for data validation by analysis their correlation dependence
var correlationWizard = validationSettingsDialog.getCorrelationWizard();
// Get DOM tree for this wizard
var dom = correlationWizard.getDomNode();
// Set wizard style
PP.addClass(dom, "PPValidationSettingsDlgContent");
// Make wizard visible
correlationWizard.show();
// Add the obtained wizard to the standard dialog
var dialog = new PP.Ui.Dialog({
    Content: correlationWizard,
    Width: 700, // Dialog width
    Height: 180 // Dialog height
});
// Display this dialog
dialog.show();

After executing the example the created dialog box shows a wizard that validates data by analyzing their correlation dependence:

See also:

ValidationSettingsDialog