EaxDataView.getBubbleChartView

Syntax

getBubbleChartView();

Description

The getBubbleChartView method returns the Bubble Chart view in the working area of express report.

Example

Executing the example requires that the HTML page contains the ExpressBox component named expressBox (see Example of Creating the ExpressBox Component). Then get the Bubble Chart data view and set new width and height for this view:

// Get an object of the EaxDataView class
var dataView = expressBox.getDataView();
dataView.getBubbleChartView().setWidth(300);
dataView.getBubbleChartView().setHeight(255);

After executing the example the Bubble Chart data view has the width of 300 and the height of 255 pixels:

See also:

EaxDataView