Sets the mouseover event handler for the legend, which is triggered when the user moves the mouse(input device) over a legend item. After the event is triggered, the event related data is passed as a parameter to the assigned event handler. Parameters passed to the function are shown in the Event Object section below.
var chart = new CanvasJS.Chart("container",
{
.
.
legend: {
itemmouseover: function(e){
alert( "Mouse moved over the legend item");
}
},
.
.
});
chart.render();
e:{
x,
y,
chart,
dataPoint,
dataSeries,
dataPointIndex,
dataSeriesIndex
}
Also See:
3 Comments
Pingback: CanvasJS Version 1.4 Beta with StripLines, Legend Events & Empty Data Points in Chart | CanvasJS
Fyi, you have a typo: “itemclick: function(e){
alert( “Mouse moved over the legend item”);
}
},” should be itemmouseover
Matt,
We have updated the same. Thanks.