You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@echarts.apache.org by GitBox <gi...@apache.org> on 2021/04/17 09:25:26 UTC

[GitHub] [echarts] Bilge opened a new issue #14695: Connected tooltip lags and glitches on paired chart

Bilge opened a new issue #14695:
URL: https://github.com/apache/echarts/issues/14695


   ### Version
   5.1.0
   
   ### Steps to reproduce
   ```js
   echarts.connect([chart1, chart2]);
   ```
   
   ### What is expected?
   Tooltips animate in unison.
   
   ### What is actually happening?
   The tooltip of the paired chart that the user is *not* interacting with lags behind the one that the user *is* interacting with. In 5.1.0, it becomes even worse, starting to "glitch out", by warping to random positions at single frame intervals.
   
   #### 5.0.2 (lag)
   ![rDhbR0I2Sw](https://user-images.githubusercontent.com/470626/115108097-87dfbe00-9f66-11eb-9539-84880e0b3542.gif)
   
   #### 5.1.0 (lag and glitching)
   ![exH7P8l1M5](https://user-images.githubusercontent.com/470626/115108216-1eac7a80-9f67-11eb-89e8-54f96f2a47d0.gif)
   
   <!-- This issue is generated by echarts-issue-helper. DO NOT REMOVE -->
   <!-- This issue is in English. DO NOT REMOVE -->


-- 
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@echarts.apache.org
For additional commands, e-mail: commits-help@echarts.apache.org


[GitHub] [echarts] Raphyyy commented on issue #14695: Connected tooltip lags and glitches on paired chart

Posted by GitBox <gi...@apache.org>.
Raphyyy commented on issue #14695:
URL: https://github.com/apache/echarts/issues/14695#issuecomment-840599372


   Hello,
   I am figured the same issue but it occurs only in Chrome when I open the devtools console. All is working fine with Firefox.
   When the devtools console is closed :
   ![oer87Erkjb](https://user-images.githubusercontent.com/13983107/118139658-df5b3780-b407-11eb-8771-746b4b4dc857.gif)
   When I open the devtools : 
   ![zzeze](https://user-images.githubusercontent.com/13983107/118139711-ed10bd00-b407-11eb-84fb-3302c9f2bebe.gif)
   Here is the config : https://pastebin.com/LVLMdn3G


-- 
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@echarts.apache.org
For additional commands, e-mail: commits-help@echarts.apache.org


[GitHub] [echarts] Bilge edited a comment on issue #14695: Connected tooltip lags and glitches on paired chart

Posted by GitBox <gi...@apache.org>.
Bilge edited a comment on issue #14695:
URL: https://github.com/apache/echarts/issues/14695#issuecomment-913877921


   @plainheart Why is this still not fixed? I can't upgrade whilst this bug persists. This bug is still present in v5.2!


-- 
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: commits-unsubscribe@echarts.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@echarts.apache.org
For additional commands, e-mail: commits-help@echarts.apache.org


[GitHub] [echarts] Bilge edited a comment on issue #14695: Connected tooltip lags and glitches on paired chart

Posted by GitBox <gi...@apache.org>.
Bilge edited a comment on issue #14695:
URL: https://github.com/apache/echarts/issues/14695#issuecomment-824893802


   Doesn't look that good to me.
   
   ![kOj75m79Sz](https://user-images.githubusercontent.com/470626/115732383-d5ea2c80-a37f-11eb-9c27-f761197b8084.gif)
   
   Firefox 87 & 88, developer console closed.


-- 
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@echarts.apache.org
For additional commands, e-mail: commits-help@echarts.apache.org


[GitHub] [echarts] plainheart edited a comment on issue #14695: Connected tooltip lags and glitches on paired chart

Posted by GitBox <gi...@apache.org>.
plainheart edited a comment on issue #14695:
URL: https://github.com/apache/echarts/issues/14695#issuecomment-826274009


   @pissang To find out why the tooltip is lagged and shakes from side to side, especially in the connected charts, I dug slightly into the related source code. Currently, I'm thinking it may be for the method `TooltipView#_updatePosition` will be very frequently called when `mousemove`. Only in `4ms`, it seems to be called many times. The normal chart can work smoothly, but in the connected chart, it will become worse. So far, I tried to throttle the `_updatePosition` function in `50ms`(the tested result may need to validate), it's working better in both Chrome(with the devtools open) and Firefox even if we use the previous way `left/top`.
   
   Here is the demo using the ECharts lib based on this temporal solution, it seems to be working well in Firefox and Chrome with the devtools open. https://codepen.io/plainheart/pen/KKarOZb
   
   The branch for this change is https://github.com/apache/echarts/tree/fix-tooltip. Related test case is `tooltip-lag-glitch.html`.
   
   


-- 
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@echarts.apache.org
For additional commands, e-mail: commits-help@echarts.apache.org


[GitHub] [echarts] Bilge commented on issue #14695: Connected tooltip lags and glitches on paired chart

Posted by GitBox <gi...@apache.org>.
Bilge commented on issue #14695:
URL: https://github.com/apache/echarts/issues/14695#issuecomment-824920891


   @plainheart Thank you for making the simple test case. I hope you can figure out a fix.


-- 
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@echarts.apache.org
For additional commands, e-mail: commits-help@echarts.apache.org


[GitHub] [echarts] Bilge edited a comment on issue #14695: Connected tooltip lags and glitches on paired chart

Posted by GitBox <gi...@apache.org>.
Bilge edited a comment on issue #14695:
URL: https://github.com/apache/echarts/issues/14695#issuecomment-824893802


   Doesn't look that good to me.
   
   ![kOj75m79Sz](https://user-images.githubusercontent.com/470626/115732383-d5ea2c80-a37f-11eb-9c27-f761197b8084.gif)
   
   Firefox 87, developer console closed.


-- 
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@echarts.apache.org
For additional commands, e-mail: commits-help@echarts.apache.org


[GitHub] [echarts] pissang commented on issue #14695: Connected tooltip lags and glitches on paired chart

Posted by GitBox <gi...@apache.org>.
pissang commented on issue #14695:
URL: https://github.com/apache/echarts/issues/14695#issuecomment-822989081


   @plainheart Is this related to the new `transform` enhancement in tooltip?


-- 
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@echarts.apache.org
For additional commands, e-mail: commits-help@echarts.apache.org


[GitHub] [echarts] Bilge commented on issue #14695: Connected tooltip lags and glitches on paired chart

Posted by GitBox <gi...@apache.org>.
Bilge commented on issue #14695:
URL: https://github.com/apache/echarts/issues/14695#issuecomment-824751107


   @pissang Please note, in the example videos, I am using Firefox. Devtools are not open.
   
   After examining the results in Chrome, I understand why you were talking about the dev tools (developer console). Yes, in Chrome, it seems to work perfectly well *unless* the developer console is open. _However_, in Firefox this is a problem all the time, whether the console is open or not. Therefore I think this is quite a serious issue.


-- 
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@echarts.apache.org
For additional commands, e-mail: commits-help@echarts.apache.org


[GitHub] [echarts] pissang commented on issue #14695: Connected tooltip lags and glitches on paired chart

Posted by GitBox <gi...@apache.org>.
pissang commented on issue #14695:
URL: https://github.com/apache/echarts/issues/14695#issuecomment-823011580


   @plainheart Remind me that we also met some lag performance issues when devtool is open.


-- 
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@echarts.apache.org
For additional commands, e-mail: commits-help@echarts.apache.org


[GitHub] [echarts] plainheart edited a comment on issue #14695: Connected tooltip lags and glitches on paired chart

Posted by GitBox <gi...@apache.org>.
plainheart edited a comment on issue #14695:
URL: https://github.com/apache/echarts/issues/14695#issuecomment-826274009


   @pissang To find out why the tooltip is lagged and shakes from side to side, especially in the connected charts, I dug slightly into the related source code. Currently, I'm thinking it may be for the method `TooltipView#_updatePosition` will be very frequently called when `mousemove`. Only in `4ms`, it seems to be called many times. The normal chart can work smoothly, but in the connected chart, it will become worse. So far, I tried to throttle the `_updatePosition` function in `50ms`(the tested result may need to validate), it's working better in both Chrome(with the devtools open) and Firefox even if we use the previous way `left/top`.
   
   Here is the demo using the ECharts lib based on this temporary solution, it seems to be working well in Firefox and Chrome with the devtools open. https://codepen.io/plainheart/pen/KKarOZb
   
   The branch for this change is https://github.com/apache/echarts/tree/fix-tooltip. The related test case is `tooltip-lag-glitch.html`.
   
   


-- 
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@echarts.apache.org
For additional commands, e-mail: commits-help@echarts.apache.org


[GitHub] [echarts] pissang edited a comment on issue #14695: Connected tooltip lags and glitches on paired chart

Posted by GitBox <gi...@apache.org>.
pissang edited a comment on issue #14695:
URL: https://github.com/apache/echarts/issues/14695#issuecomment-823011580






-- 
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@echarts.apache.org
For additional commands, e-mail: commits-help@echarts.apache.org


[GitHub] [echarts] plainheart commented on issue #14695: Connected tooltip lags and glitches on paired chart

Posted by GitBox <gi...@apache.org>.
plainheart commented on issue #14695:
URL: https://github.com/apache/echarts/issues/14695#issuecomment-824918188


   Seems so. I updated the data, it can be reproduced in Firefox.


-- 
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@echarts.apache.org
For additional commands, e-mail: commits-help@echarts.apache.org


[GitHub] [echarts] plainheart commented on issue #14695: Connected tooltip lags and glitches on paired chart

Posted by GitBox <gi...@apache.org>.
plainheart commented on issue #14695:
URL: https://github.com/apache/echarts/issues/14695#issuecomment-826274009


   @pissang To find out why the tooltip is lagged and shakes from side to side, especially in the connected charts, I dug slightly into the related source code. Currently, I'm thinking it may be for the method `TooltipView#_updatePosition` will be very frequently called when `mousemove`. Only in 4ms, it seems to be called many times. The normal chart can work smoothly, but in the connected chart, it will become worse. As far, I tried to throttle the `_updatePosition` function in `50ms`(the tested result may need to validate), it's working better in both Chrome(with the devtools open) and Firefox even if we use the previous way `left/top`.
   
   Here is the demo using the ECharts lib based on this temporal solution, it seems to be working well in Firefox and Chrome with the devtools open. https://codepen.io/plainheart/pen/KKarOZb
   
   The branch for this change is https://github.com/apache/echarts/tree/fix-tooltip. Related test case is `tooltip-lag-glitch.html`.
   
   


-- 
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@echarts.apache.org
For additional commands, e-mail: commits-help@echarts.apache.org


[GitHub] [echarts] plainheart edited a comment on issue #14695: Connected tooltip lags and glitches on paired chart

Posted by GitBox <gi...@apache.org>.
plainheart edited a comment on issue #14695:
URL: https://github.com/apache/echarts/issues/14695#issuecomment-826274009


   @pissang To find out why the tooltip is lagged and shakes from side to side, especially in the connected charts, I dug slightly into the related source code. Currently, I'm thinking it may be for the method `TooltipView#_updatePosition` will be very frequently called when `mousemove`. Only in `4ms`, it seems to be called many times. The normal chart can work smoothly, but in the connected chart, it will become worse. So far, I tried to throttle the `_updatePosition` function in `50ms`(the tested result may need to validate), it's working better in both Chrome(with the devtools open) and Firefox even if we use the previous way `left/top`.
   
   Here is the demo using the ECharts lib based on this temporal solution, it seems to be working well in Firefox and Chrome with the devtools open. https://codepen.io/plainheart/pen/KKarOZb
   
   The branch for this change is https://github.com/apache/echarts/tree/fix-tooltip. Related test case is `tooltip-lag-glitch.html`.
   
   


-- 
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@echarts.apache.org
For additional commands, e-mail: commits-help@echarts.apache.org


[GitHub] [echarts] plainheart commented on issue #14695: Connected tooltip lags and glitches on paired chart

Posted by GitBox <gi...@apache.org>.
plainheart commented on issue #14695:
URL: https://github.com/apache/echarts/issues/14695#issuecomment-824878046


   I checked a connected chart in firefox, it looks okay. https://codepen.io/plainheart/pen/KKarOZb


-- 
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@echarts.apache.org
For additional commands, e-mail: commits-help@echarts.apache.org


[GitHub] [echarts] Bilge edited a comment on issue #14695: Connected tooltip lags and glitches on paired chart

Posted by GitBox <gi...@apache.org>.
Bilge edited a comment on issue #14695:
URL: https://github.com/apache/echarts/issues/14695#issuecomment-824893802


   Doesn't look that good to me.
   
   ![kOj75m79Sz](https://user-images.githubusercontent.com/470626/115732383-d5ea2c80-a37f-11eb-9c27-f761197b8084.gif)
   
   Firefox 87 & 88 on Windows, developer console closed.


-- 
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@echarts.apache.org
For additional commands, e-mail: commits-help@echarts.apache.org


[GitHub] [echarts] 100pah closed issue #14695: Connected tooltip lags and glitches on paired chart

Posted by GitBox <gi...@apache.org>.
100pah closed issue #14695:
URL: https://github.com/apache/echarts/issues/14695


   


-- 
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: commits-unsubscribe@echarts.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@echarts.apache.org
For additional commands, e-mail: commits-help@echarts.apache.org


[GitHub] [echarts] plainheart commented on issue #14695: Connected tooltip lags and glitches on paired chart

Posted by GitBox <gi...@apache.org>.
plainheart commented on issue #14695:
URL: https://github.com/apache/echarts/issues/14695#issuecomment-824822857


   Does the tooltip issue only occur in the connected charts? I just ran the simple [line demo](https://echarts.apache.org/examples/en/editor.html?c=line-stack) in Firefox 88, it's even working better than Chrome even if the devtools is open.


-- 
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@echarts.apache.org
For additional commands, e-mail: commits-help@echarts.apache.org


[GitHub] [echarts] Bilge commented on issue #14695: Connected tooltip lags and glitches on paired chart

Posted by GitBox <gi...@apache.org>.
Bilge commented on issue #14695:
URL: https://github.com/apache/echarts/issues/14695#issuecomment-913877921


   @plainheart Why is this still not merged? I can't upgrade whilst this issue still persists.


-- 
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: commits-unsubscribe@echarts.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@echarts.apache.org
For additional commands, e-mail: commits-help@echarts.apache.org


[GitHub] [echarts] Bilge edited a comment on issue #14695: Connected tooltip lags and glitches on paired chart

Posted by GitBox <gi...@apache.org>.
Bilge edited a comment on issue #14695:
URL: https://github.com/apache/echarts/issues/14695#issuecomment-913877921


   @plainheart Why is this still not fixed? I can't upgrade whilst this bug persists. This bug is still present in 5.2.


-- 
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: commits-unsubscribe@echarts.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@echarts.apache.org
For additional commands, e-mail: commits-help@echarts.apache.org


[GitHub] [echarts] plainheart commented on issue #14695: Connected tooltip lags and glitches on paired chart

Posted by GitBox <gi...@apache.org>.
plainheart commented on issue #14695:
URL: https://github.com/apache/echarts/issues/14695#issuecomment-826274009


   @pissang To find out why the tooltip is lagged and shakes from side to side, especially in the connected charts, I dug slightly into the related source code. Currently, I'm thinking it may be for the method `TooltipView#_updatePosition` will be very frequently called when `mousemove`. Only in 4ms, it seems to be called many times. The normal chart can work smoothly, but in the connected chart, it will become worse. As far, I tried to throttle the `_updatePosition` function in `50ms`(the tested result may need to validate), it's working better in both Chrome(with the devtools open) and Firefox even if we use the previous way `left/top`.
   
   Here is the demo using the ECharts lib based on this temporal solution, it seems to be working well in Firefox and Chrome with the devtools open. https://codepen.io/plainheart/pen/KKarOZb
   
   The branch for this change is https://github.com/apache/echarts/tree/fix-tooltip. Related test case is `tooltip-lag-glitch.html`.
   
   


-- 
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@echarts.apache.org
For additional commands, e-mail: commits-help@echarts.apache.org


[GitHub] [echarts] Bilge edited a comment on issue #14695: Connected tooltip lags and glitches on paired chart

Posted by GitBox <gi...@apache.org>.
Bilge edited a comment on issue #14695:
URL: https://github.com/apache/echarts/issues/14695#issuecomment-824893802


   Doesn't look that good to me.
   
   ![kOj75m79Sz](https://user-images.githubusercontent.com/470626/115732383-d5ea2c80-a37f-11eb-9c27-f761197b8084.gif)
   


-- 
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@echarts.apache.org
For additional commands, e-mail: commits-help@echarts.apache.org


[GitHub] [echarts] Bilge edited a comment on issue #14695: Connected tooltip lags and glitches on paired chart

Posted by GitBox <gi...@apache.org>.
Bilge edited a comment on issue #14695:
URL: https://github.com/apache/echarts/issues/14695#issuecomment-824751107


   @pissang Please note, in the example videos, I am using **Firefox**. Devtools are not open.
   
   After examining the results in Chrome, I understand why you were talking about the dev tools (developer console). Yes, in Chrome, it seems to work perfectly well *unless* the developer console is open. _However_, in Firefox this is a problem all the time, whether the console is open or not. Therefore I think this is quite a serious issue.


-- 
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@echarts.apache.org
For additional commands, e-mail: commits-help@echarts.apache.org


[GitHub] [echarts] Raphyyy edited a comment on issue #14695: Connected tooltip lags and glitches on paired chart

Posted by GitBox <gi...@apache.org>.
Raphyyy edited a comment on issue #14695:
URL: https://github.com/apache/echarts/issues/14695#issuecomment-840599372


   Hello,
   I am facing the same issue but it occurs only in Chrome when I open the devtools console. All is working fine with Firefox.
   When the devtools console is closed :
   ![oer87Erkjb](https://user-images.githubusercontent.com/13983107/118139658-df5b3780-b407-11eb-8771-746b4b4dc857.gif)
   When I open the devtools : 
   ![zzeze](https://user-images.githubusercontent.com/13983107/118139711-ed10bd00-b407-11eb-84fb-3302c9f2bebe.gif)
   Here is the config : https://pastebin.com/LVLMdn3G


-- 
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@echarts.apache.org
For additional commands, e-mail: commits-help@echarts.apache.org


[GitHub] [echarts] Bilge commented on issue #14695: Connected tooltip lags and glitches on paired chart

Posted by GitBox <gi...@apache.org>.
Bilge commented on issue #14695:
URL: https://github.com/apache/echarts/issues/14695#issuecomment-825545337


   @plainheart It's good 😁 👍 


-- 
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@echarts.apache.org
For additional commands, e-mail: commits-help@echarts.apache.org


[GitHub] [echarts] Bilge commented on issue #14695: Connected tooltip lags and glitches on paired chart

Posted by GitBox <gi...@apache.org>.
Bilge commented on issue #14695:
URL: https://github.com/apache/echarts/issues/14695#issuecomment-824893802


   Doesn't look that good to me.
   
   ![Uploading kOj75m79Sz.gif…]()
   


-- 
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@echarts.apache.org
For additional commands, e-mail: commits-help@echarts.apache.org


[GitHub] [echarts] plainheart commented on issue #14695: Connected tooltip lags and glitches on paired chart

Posted by GitBox <gi...@apache.org>.
plainheart commented on issue #14695:
URL: https://github.com/apache/echarts/issues/14695#issuecomment-822994779


   I'm not very sure yet. I have known about this issue since the initial development. But it seems it only occurs when `transition: transform` is enabled and the dev tool is open.


-- 
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@echarts.apache.org
For additional commands, e-mail: commits-help@echarts.apache.org


[GitHub] [echarts] plainheart commented on issue #14695: Connected tooltip lags and glitches on paired chart

Posted by GitBox <gi...@apache.org>.
plainheart commented on issue #14695:
URL: https://github.com/apache/echarts/issues/14695#issuecomment-825386291


   @Bilge Hi, I updated the ECharts lib used in the demo. I checked it in Firefox, it seems okay. Could you help check it again with your environment? Thanks.


-- 
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@echarts.apache.org
For additional commands, e-mail: commits-help@echarts.apache.org


[GitHub] [echarts] plainheart edited a comment on issue #14695: Connected tooltip lags and glitches on paired chart

Posted by GitBox <gi...@apache.org>.
plainheart edited a comment on issue #14695:
URL: https://github.com/apache/echarts/issues/14695#issuecomment-822994779


   I'm not very sure yet. I have known about this issue since the initial development. But it seems it only occurs when `transition: transform` is enabled and the dev tool is open. So I did't mention it before.


-- 
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@echarts.apache.org
For additional commands, e-mail: commits-help@echarts.apache.org


[GitHub] [echarts] Bilge commented on issue #14695: Connected tooltip lags and glitches on paired chart

Posted by GitBox <gi...@apache.org>.
Bilge commented on issue #14695:
URL: https://github.com/apache/echarts/issues/14695#issuecomment-824825819


   Yes, only the connected chart is impacted.


-- 
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@echarts.apache.org
For additional commands, e-mail: commits-help@echarts.apache.org


[GitHub] [echarts] Bilge commented on issue #14695: Connected tooltip lags and glitches on paired chart

Posted by GitBox <gi...@apache.org>.
Bilge commented on issue #14695:
URL: https://github.com/apache/echarts/issues/14695#issuecomment-914098253


   @plainheart Very good, thank you!


-- 
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: commits-unsubscribe@echarts.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@echarts.apache.org
For additional commands, e-mail: commits-help@echarts.apache.org


[GitHub] [echarts] plainheart commented on issue #14695: Connected tooltip lags and glitches on paired chart

Posted by GitBox <gi...@apache.org>.
plainheart commented on issue #14695:
URL: https://github.com/apache/echarts/issues/14695#issuecomment-913933286


   @Bilge Sorry for putting this matter on hold. I've opened PR #15683 to make it go ahead.


-- 
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: commits-unsubscribe@echarts.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@echarts.apache.org
For additional commands, e-mail: commits-help@echarts.apache.org


[GitHub] [echarts] pissang edited a comment on issue #14695: Connected tooltip lags and glitches on paired chart

Posted by GitBox <gi...@apache.org>.
pissang edited a comment on issue #14695:
URL: https://github.com/apache/echarts/issues/14695#issuecomment-822989081


   @plainheart Is this related to the new `transform3d` enhancement in tooltip?


-- 
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@echarts.apache.org
For additional commands, e-mail: commits-help@echarts.apache.org


[GitHub] [echarts] Bilge edited a comment on issue #14695: Connected tooltip lags and glitches on paired chart

Posted by GitBox <gi...@apache.org>.
Bilge edited a comment on issue #14695:
URL: https://github.com/apache/echarts/issues/14695#issuecomment-913877921


   @plainheart Why is this still not merged? I can't upgrade whilst this issue still persists. This bug is still present in 5.2.


-- 
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: commits-unsubscribe@echarts.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@echarts.apache.org
For additional commands, e-mail: commits-help@echarts.apache.org


[GitHub] [echarts] Bilge edited a comment on issue #14695: Connected tooltip lags and glitches on paired chart

Posted by GitBox <gi...@apache.org>.
Bilge edited a comment on issue #14695:
URL: https://github.com/apache/echarts/issues/14695#issuecomment-824751107






-- 
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@echarts.apache.org
For additional commands, e-mail: commits-help@echarts.apache.org


[GitHub] [echarts] Bilge edited a comment on issue #14695: Connected tooltip lags and glitches on paired chart

Posted by GitBox <gi...@apache.org>.
Bilge edited a comment on issue #14695:
URL: https://github.com/apache/echarts/issues/14695#issuecomment-824751107


   @pissang Please note, in the example videos, I am using **Firefox**. Devtools are not open.
   
   After examining the results in Chrome, I understand why you were talking about the dev tools (developer console). Yes, in Chrome, it seems to work perfectly well *unless* the developer console is open. _However_, in Firefox this is a problem all the time, whether the console is open or not. Therefore I think this is quite a serious issue.
   
   I think animations in general are impacted. I also observe flickering of markLine labels. However, this happens in both Firefox and Chrome, even with developer console closed, so maybe not related?
   
   | Firefox on ECharts 5.1.0 | Chrome in ECharts 5.1.0 |
   |-|-|
   | ![PTCGzmc4y6](https://user-images.githubusercontent.com/470626/115706125-361fa500-a365-11eb-8e5a-275138f49875.gif) | ![FZMF4jr7Z8](https://user-images.githubusercontent.com/470626/115706309-65cead00-a365-11eb-8ce0-11a0b7383b80.gif)
   
   


-- 
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@echarts.apache.org
For additional commands, e-mail: commits-help@echarts.apache.org


[GitHub] [echarts] Bilge edited a comment on issue #14695: Connected tooltip lags and glitches on paired chart

Posted by GitBox <gi...@apache.org>.
Bilge edited a comment on issue #14695:
URL: https://github.com/apache/echarts/issues/14695#issuecomment-824751107


   @pissang Please note, in the example videos, I am using **Firefox**. Devtools are not open.
   
   After examining the results in Chrome, I understand why you were talking about the dev tools (developer console). Yes, in Chrome, it seems to work perfectly well *unless* the developer console is open. _However_, in Firefox this is a problem all the time, whether the console is open or not. Therefore I think this is quite a serious issue.
   
   ---
   
   Aside, I think animations in general are impacted. I also observe flickering of markLine labels. However, this happens in both Firefox and Chrome, even with developer console closed, so maybe not related?
   
   | Firefox on ECharts 5.1.0 | Chrome in ECharts 5.1.0 |
   |-|-|
   | ![PTCGzmc4y6](https://user-images.githubusercontent.com/470626/115706125-361fa500-a365-11eb-8e5a-275138f49875.gif) | ![FZMF4jr7Z8](https://user-images.githubusercontent.com/470626/115706309-65cead00-a365-11eb-8ce0-11a0b7383b80.gif)
   
   


-- 
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@echarts.apache.org
For additional commands, e-mail: commits-help@echarts.apache.org


[GitHub] [echarts] echarts-bot[bot] commented on issue #14695: Connected tooltip lags and glitches on paired chart

Posted by GitBox <gi...@apache.org>.
echarts-bot[bot] commented on issue #14695:
URL: https://github.com/apache/echarts/issues/14695#issuecomment-821795457


   Hi! We've received your issue and please be patient to get responded. 🎉
   The average response time is expected to be within one day for weekdays.
   
   In the meanwhile, please make sure that **you have posted enough image to demo your request**. You may also check out the [API](http://echarts.apache.org/api.html) and [chart option](http://echarts.apache.org/option.html) to get the answer.
   
   If you don't get helped for a long time (over a week) or have an urgent question to ask, you may also send an email to dev@echarts.apache.org. Please attach the issue link if it's a technical question.
   
   If you are interested in the project, you may also subscribe our [mailing list](https://echarts.apache.org/en/maillist.html).
   
   Have a nice day! 🍵


-- 
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@echarts.apache.org
For additional commands, e-mail: commits-help@echarts.apache.org