ChartArea.getGridLayer

Syntax

getGridLayer();

Description

The getGridLayer method returns grid and axes layer for bubble chart.

Comments

The returned value is an instance of the following class: PP.Ui.Canvas.

Example

To execute this example, the HTML page must contain the BubbleChart component named bubbleChart (see Example of Creating the BubbleChart Component). Clear the layer of bubble chart grid and axes:

// Clear the layer of bubble chart grid and axes
bubbleChart.getChartArea().getGridLayer().clear();

As a result, the grid and axes layer is removed from the bubble chart:

See also:

ChartArea