Version
5.2.2
Link to Minimal Reproduction
https://echarts.apache.org/examples/view.html?c=area-stack-gradient
Steps to Reproduce
- Open the above reproduction example link with Firefox or IE
- 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
- 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.
Version
5.2.2
Link to Minimal Reproduction
https://echarts.apache.org/examples/view.html?c=area-stack-gradient
Steps to Reproduce
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
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 usetransformto improve performance anymore. And, to make it work smoothly in all common browsers, I'm thinking it's better to revert toleft/top.