We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb88426 commit a9723f4Copy full SHA for a9723f4
src/modules/tooltip/Tooltip.js
@@ -612,7 +612,7 @@ export default class Tooltip {
612
613
w.globals.dom.baseEl.classList.add('apexcharts-tooltip-active')
614
opt.tooltipEl.classList.add('apexcharts-active')
615
- } else if (e.type === 'mouseout' || e.type === 'touchend') {
+ } else if (!w.globals.dom.baseEl.contains(e.relatedTarget) && (e.type === 'mouseout' || e.type === 'touchend')) {
616
this.handleMouseOut(opt)
617
}
618
0 commit comments