Home Forums Chart Support Hiding tooltip when mouse out of the point Reply To: Hiding tooltip when mouse out of the point

#37602

@sparikh,

You can use the tooltip hide() method within the dataSeries mouseout function to hide the tooltip when the mouse is moved away from the dataPoint. Please find the code snippet for the same below.

function onMouseout(e){
   e.chart.toolTip.hide();
}

Kindly take a look at this JSFiddle for a working example.

Hide tooltip on mouseout


Thangaraj Raman
Team CanvasJS