ItemsSelected: function (sender, args: Object);
sender. Event source.
args. Event information. Information about selected items is in the Items property.
The ItemsSelected event is generated after visualizer items selecting.
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: