occurs when mouse pointer is pointed over an item
id | string|number | an id of the item in the question |
ev | Event | a native event object |
trg | string | a target HTML element |
myChart.attachEvent("onMousemove", function (id, ev, trg){
//any custom logic here
});
Event name is case insensitive.
Back to top