StatisticalOutliersWizard.CurrentState

Syntax

CurrentState: Object

Description

The CurrentState property defines current settings for the wizard that validates data by analyzing statistical outliers of time series data.

Comments

Use the setCurrentState method to set the property value, and the getCurrentState method to get the property value. Property value cannot be set from JSON.

Example

To execute the example, the HTML page must contain an instance of the StatisticalOutliersWizard class named statisticalOutliersWizard (see StatisticalOutliersWizard Constructor). Determine new settings for the data validation wizard that analyzes statistical outliers of time series data:

// Determine wizard settings
var state = {
    "lowerPercentile": 3, // Lower outlier border
    "upperPercentile": 4 // Upper outlier border
};
// Apply these settings
statisticalOutliersWizard.setCurrentState(state);

After executing the example lower selection limit equal to three and upper selection limit equal to four are set in the wizard in question:

See also:

StatisticalOutliersWizard