DataVisualizer.AreaSelectionAction

Syntax

AreaSelectionAction : PP.Ui.AreaSelectionAction;

Description

The AreaSelectionAction property determines action on area selection in visualizer.

Comments

Use JSON and the setAreaSelectionAction method to set the property value and the getAreaSelectionAction method to get the property value.

Default value depends on visualizer type.

Example

To execute the example, the HTML page must contain the BubbleChart component named bubbleChart (see Example of Creating the BubbleChart Component).

// Determine action on selection - area selection
action = PP.Ui.AreaSelectionAction.Selection;
// Set action on selection
bubbleChart.setAreaSelectionAction(action);

After executing the example on area selection, the visualizer area is selected instead of element selection.

See also:

DataVisualizer