Im trying to simply hide the tooltips from ever showing. Ive tried to do this with the following but the tooltip still shows for a second…
elem.on('plotly_hover',function(data){
console.log('plotly hover');
Plotly.Fx.unhover(elem);
});
It doesnt look like plotly_beforehover is ever fired for a pie chart for whatever reason.