getGrowthRateWizard();
The getGrowthRateWizard method returns the wizard that validates data by analyzing time series growth rate.
This method returns an object of the PP.TS.Ui.LevelWizard type.
Executing this example requires the ValidationSettingsDialog component named validationSettingsDialog (see Example of creating the ValidationSettingsDialog component). Show the data validation wizard that analyzes time series growth rate in a separate dialog box:
// Get wizard for data validation by time series growth rate analysis var growthRateWizard = validationSettingsDialog.getGrowthRateWizard(); // Get DOM tree for this wizard var dom = growthRateWizard.getDomNode(); // Set wizard style PP.addClass(dom, "PPValidationSettingsDlgContent"); // Make wizard visible growthRateWizard.show(); // Add the obtained wizard to the standard dialog var dialog = new PP.Ui.Dialog({ Content: growthRateWizard, Width: 600, // Dialog width Height: 120 // Dialog height }); // Display this dialog dialog.show();
After executing the example the created dialog box shows the wizard that validates data by analyzing time series growth rate:
See also: