EaxMapView.IsLegendHeaderClickable

Syntax

IsLegendHeaderClickable: Boolean

Description

The IsLegendHeaderClickable class indicates if title of the express report map legend is shown as a hyperlink.

Comments

If this property is True, the legend title is shown as a hyperlink, if the property is set to False the title is shown as a plain text. By default this property is set to True.

Use the setIsLegendHeaderClickable method to set the property value, and the getIsLegendHeaderClickable method to get the property value. Property value cannot be set from JSON.

Example

Executing the example requires that the HTML page contains the ExpressBox component named expressBox (see Example of Creating the ExpressBox Component) and have a loaded map in the working area. Show title of the express report map legend as a plain text:

// Get express report map view
var eaxMapView = expressBox.getDataView().getMapView();
eaxMapView.setIsLegendHeaderClickable(False);

After executing the example the map legend title is shown as a plain text:

See also:

EaxMapView