原因:使用了resize之后,动画失效,这是echarts5的bug,echarts4不会
解决办法:https://github.com/apache/echarts/pull/14553
在resize中添加动画
onResize() {
this.myChart.resize({
animation: {
duration: 2800,
easing: 'cubicInOut',
// delay: 500,
},
})
},