Check documentation for the latest version of dhtmlxSuite onMouseMove DHTMLX Docs

onMouseMove

occurs when mouse pointer is pointed over an item

void onMouseMove(string|number id,Event ev,string trg);
idstring|numberan id of the item in the question
evEventa native event object
trgstringa target HTML element

Example

myChart.attachEvent("onMousemove", function (id, ev, trg){
//any custom logic here
});

Details

Event name is case insensitive.

Back to top