mathias22osterhagen22 edited a comment on issue #6202:
URL: https://github.com/apache/echarts/issues/6202#issuecomment-933529422


   This issue has been a high priority since 2019.... please...
   
   I fixed it in `vue-echarts` like this: 
   
   ```javascript
    fixIssue6202Echart() {
      //Fix: https://github.com/apache/echarts/issues/6202
      if (this.$refs.yourChart) this.$refs.yourChart.setOption(this.datas, 
true);
     }
   ``` 
   
   * yourChart is the ref of the `v-chart` component: `<v-chart 
ref="snapechart">`
   * this.datas is the data you give to as option containing: `legend, xAxis, 
yAxis` etc...
   * you need to call the `fixIssue6202Echart()` function **after every time 
you update your series**


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