plainheart opened a new issue #16254: URL: https://github.com/apache/echarts/issues/16254
### Version 5.2.2 ### Link to Minimal Reproduction https://echarts.apache.org/examples/view.html?c=area-stack-gradient ### Steps to Reproduce 1) Open the above reproduction example link with Firefox or IE 2) Watch if the tooltip shakes ### Current Behavior The tooltip shakes in Firefox & IE. ### Expected Behavior As the same as Chromium, the tooltip shouldn't shake in Firefox and IE as well. ### Environment ```markdown - OS: Any - Browser: Latest Firefox / IE 11 ``` ### Any additional comments? The real reason for the *__shake__* issue is that the position of the tooltip will be updated in a very short time. We've solved it in #15683 via adding a throttle of `50ms`. Thus it's not necessary to use `transform` to improve performance anymore. And, to make it work smoothly in all common browsers, I'm thinking it's better to revert to `left/top`. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
