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


   ### Version
   4.9.0
   
   ### Steps to reproduce
   ```js
   chartArray.map(item => {
     console.time('绘图')
     const chart = echarts.init(document.getElementById('echarts-container-'   
item.id))
     const options = redGreenTableLineVisualMap(item.chart)
     chart.setOption(options)
     console.timeEnd('绘图')
   })
   ```
   
   ### What is expected?
   多个同时并行
   
   ### What is actually happening?
   逐个执行
   ```
   绘图: 520.172119140625ms
   绘图: 425.0458984375ms
   绘图: 424.07568359375ms
   ```
   
   <!-- This issue is generated by echarts-issue-helper. 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:
us...@infra.apache.org



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

Reply via email to