TreeMap.UseDrillOnClick

Syntax

UseDrillOnClick: Boolean;

Description

The UseDrillOnClick property determines whether data drill down is applied on mouse click.

Comments

Property value can be set from JSON or using the setUseDrillOnClick method, to get the property value, use the getUseDrillOnClick method.

Example

To execute this example, the page must contain the TreeMap component named treeMap (see Example of Creating the TreeMap Component ):

// Set using data drill down on mouse click
treeMap.setUseDrillOnClick(true);

After executing the example, data drill down on mouse click is enabled.

See also:

TreeMap