ParallelCoordinates.ItemsHovered

Syntax

ItemsHovered: function (sender, args);

Parameters

sender. Event source.

args. Information on the event.  Arguments: Items - hovered lines.

Description

The ItemsHovered event occurs after hovering the mouse cursor over a chart line.

Example

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:

ParallelCoordinates