MapChart.UseMorphFill

Syntax

UseMorphFill: Boolean;

Description

The UseMorphFill property determines whether to use gradient fill for map layer areas.

Comments

Property value is set from JSON or using the setUserMorphFill method.

The property contains True if gradient fill is used for map layer areas, otherwise it contains False.

Example

To execute the example the HTML page must contain the MapChart component named map (see Example of Creating the MapChart Component). Enable gradient fill for map layer areas:

map.setUseMorphFill(true);
// Refresh the map
map.refresh();

After executing the example gradient fill is enabled in the map:

See also:

MapChart