EaxObject.getDVSynchronizable

Syntax

getDVSynchronizable();

Description

The getDVSynchronizable method contains a reference to express report visualizer instance.

Example

Executing the example requires that the HTML page contains the ExpressBox component named expressBox (see Example of Creating the ExpressBox Component) and have a loaded chart in working area of the express report. Get chart instance:

// Get workspace
DV = expressBox.getDataView();
// Get chart view (EaxObject class delegate)
chartV = DV.getChartView();
// Get chart instance
chartV.getDVSynchronizable();
// -> PP.Ui.Chart {_Animation: Object, _AutoPosition: True, _FixedTopOffset: 0, _FixedLeftOffset: 0, _FixedWidth: 0…}

After executing the example a visualizer instance is obtained.

See also:

EaxObject