ItemsHovered: function (sender, args);
sender. Event source.
args. Information on the event. Arguments: Items - hovered lines.
The ItemsHovered event occurs after hovering the mouse cursor over a chart line.
Executing this example requires the ParallelCoordinates component named coord (see Example of Creating the ParallelCoordinates Component). Handle the ItemsHovered event:
// Handle the ItemsHovered event
coord.ItemsHovered.add(function(sender, args) {
console.log("The cursor is over the chart line");
});
After executing the example on hovering the cursor over a chart line the browser console displays an appropriate message.
See also: