ValidationSettingsDialog.getCrossFrequencyWizard

Syntax

getCrossFrequencyWizard();

Description

The getCrossFrequencyWizard method returns the wizard that validates data by comparing time series frequency levels.

Comments

This method returns a PP.TS.Ui.CrossFrequencyWizard 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 comparing frequency levels of its time series in a separate dialog box:

// Get wizard for data validation by comparing frequency levels
var crossFrequencyWizard = validationSettingsDialog.getCrossFrequencyWizard();
// Get DOM tree for this wizard
var dom = crossFrequencyWizard.getDomNode();
// Set wizard style
PP.addClass(dom, "PPValidationSettingsDlgContent");
// Make wizard visible
crossFrequencyWizard.show();
// Add the obtained wizard to the dialog
var dialog = new PP.Ui.Dialog({
    Caption: "Frequency level comparison wizard",
    Content: crossFrequencyWizard,
    Width: 800 // Dialog width
});
// Display this dialog
dialog.show();

After executing the example the created dialog box shows the wizard that validates data by comparing frequency levels of data time series:

See also:

ValidationSettingsDialog