You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I had problems with the tooltip only showing when moving the mouse. It turns out that the tooltip div element itself triggered the mouseout event, The fix is just to prevent the tooltip from getting pointer events:
SmoothieChart.prototype.getTooltipEl = function () {
....
this.tooltipEl.style.pointerEvents = 'none'; <--- add this line
The text was updated successfully, but these errors were encountered:
I had problems with the tooltip only showing when moving the mouse. It turns out that the tooltip div element itself triggered the mouseout event, The fix is just to prevent the tooltip from getting pointer events:
SmoothieChart.prototype.getTooltipEl = function () {
....
this.tooltipEl.style.pointerEvents = 'none'; <--- add this line
The text was updated successfully, but these errors were encountered: