ParallelCoordinates.isLoaded

Syntax

isLoaded();

Description

The isLoaded method checks if the chart is loaded.

Comments

The method returns true if the chart is loaded, otherwise it returns false.

Example

Executing the example requires the ParallelCoordinates component named coord (see Example of Creating the ParallelCoordinates Component). Check if parallel coordinates chart is loaded:

// Check if the chart is loaded
if (coord.isLoaded()) {
    console.log("Chart is loaded");
} else {
    console.log("Chart is not loaded");
}

As a result, the browser console shows a message that the chart is loaded.

See also:

ParallelCoordinates