TreeMap.Circular

Syntax

Circular: Boolean;

Description

The Circular property determines if circular view is used for items.

Comments

Property value can be set from JSON or using the setCircular(Boolean) method; to get the property value, use the getCircular() method.

When this property is true the tree map looks like follows:

Example

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

// Set circular view
treeMap.setCircular(true);

After the example execution the tree map is shown in circular view.

See also:

TreeMap