Check documentation for the latest version of dhtmlxSuite onMouseOut DHTMLX Docs

onMouseOut

called when the mouse pointer is moved out of item area

void onMouseOut(Event ev);
evEventa native event object

Example

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

Details

Event name is case insensitive.

Back to top