zmzimpl opened a new issue #13205:
URL: https://github.com/apache/incubator-echarts/issues/13205


   I’m sorry I can’t create issues through `echarts-issues-helper` , because my 
office environment does not allow access to github.io.
   
   The problem is that I want to change `lines.effect.symbol` dynamic, but the 
effect disappear after I change the symbol.
   
   Reproduce link: 
[demo](https://gallery.echartsjs.com/editor.html?c=x9KMQuHbKl&v=2)
   
   I changed the symbol through the following code:
   
   ```
           myChart.on('timelinechanged', (param) => {
               switch(param.currentIndex) {
                   case 0:
                       optionXyMap01.options.forEach(item => {
                           item.series[2].effect.symbol = 'circle';
                       })
                       break;
                   case 1:
                       optionXyMap01.options.forEach(item => {
                           item.series[2].effect.symbol = 'arrow';
                       })
                       break;
                   case 2:
                        optionXyMap01.options.forEach(item => {
                           item.series[2].effect.symbol = 'rect';
                       })
                       break;
               }
               myChart.setOption(optionXyMap01);
           })
   
   ```
   
   


----------------------------------------------------------------
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:
[email protected]



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to