Syndlex commented on issue #20414:
URL: https://github.com/apache/echarts/issues/20414#issuecomment-2409079460

   @helgasoft Nice that was a quick answer:
   It worked sort of... Now the Graph is not stopping to turn. :D
   
https://github.com/user-attachments/assets/25ad98de-e472-4f67-8ba8-29347d4e9289
   
   Added this to the Chart: 
   ```js
   let offset = 10;
   setInterval(() =>{
     offset--; if (offset < 0) offset = 10;
     mychart.setOption({series: {lineStyle: {dashOffset: offset}}});
   }, 150);
   ```
   
   It also is flickering like it would render new everytime the 
   
   Slowed the interval to 5000 the effect is show the rendering even more.
   
https://github.com/user-attachments/assets/32ce821a-35b5-4139-8949-224fc1b78849
   


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

Reply via email to