DataVisualizer.ItemsSelected

Syntax

ItemsSelected: function (sender, args: Object);

Parameters

sender. Event source.

args. Event information. Information about selected items is in the Items property.

Description

The ItemsSelected event is generated after visualizer items selecting.

Example

To execute the example, the HTML page must contain the BubbleChart component named bubbleChart (see Example of Creating the BubbleChart Component). Add an event handler for selected items:

bubbleChart.ItemsSelecting.add(function (sender, args) {

    alert(JSON.stringify(args, null, 2));

});

After executing the example, on item selecting, information about selected items is displayed in the browser message.

See also:

DataVisualizer