DataVisualizer.MappingInactiveEffects

Syntax

MappingInactiveEffects: Array [Object];

Description

The MappingInactiveEffects property compares effects for inactive items.

Comments

Use JSON or the setMappingInactiveEffects method to set the property value and the method to get the property value.

Example

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

// Get the first effect of inactive items matching
Eff = bubbleChart.getMappingInactiveEffects()[0];
// Get its identifier
effId = Eff.getId();
// Check whether the Item0 visualizer item use the matching item
bubbleChart.getMappingItemActiveness(effId, "Item0")

As a result of executing the example, the console displays the information about matching effect application for the Item0 item.

See also:

DataVisualizer