Check documentation for the latest version of dhtmlxSuite onMouseMoving DHTMLX Docs

onMouseMoving

fires when mouse pointer is moved over a chart

void onMouseMoving(Event ev);
evEventa native event object

Example

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

Details

Event name is case insensitive.

Back to top