MissingDataWizard.CurrentState

Syntax

CurrentState: Object

Description

The CurrentState property defines current settings for the Missing Data validation wizard.

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 MissingDataWizard class named missingDataWizard (see MissingDataWizard Constructor). Determine new settings for data validation wizard that validates data by comparing it with time series database:

// Determine new wizard settings
var state = {
    // Find missing data that precede data
    type: PP.TS.ValidationMissingDataType.Leading
};
// Apply these settings
missingDataWizard.setCurrentState(state);

After executing the example leading missing data is detected in this wizard:

See also:

MissingDataWizard