https://codepen.io/junedchhipa/pen/BqbQpY
(Codepen is down ATM, but that codepen shows the sluggish behavior of tooltip animations).
Cannot disable tooltip animations.
Tooltips animations are slow. When disabling animations for the chart, the animations still exist for tooltips and markers.
Is there a way to improve the performance of animations for tooltips as it appears you cannot disable these?
Thank you
Tooltips and markers animations are done with CSS.
To disable tooltip and marker animations globally
.apexcharts-tooltip,
.apexcharts-tooltip.active,
.apexcharts-xaxistooltip,
.apexcharts-xaxistooltip.active,
.apexcharts-marker {
transition: none;
}
Thank you! That solved the issue
Most helpful comment
Tooltips and markers animations are done with CSS.
To disable tooltip and marker animations globally