echarts@5 动画失效

原因:使用了resize之后,动画失效,这是echarts5的bug,echarts4不会

解决办法:https://github.com/apache/echarts/pull/14553

在resize中添加动画

onResize() {
    
    
      this.myChart.resize({
    
    
        animation: {
    
    
          duration: 2800,
          easing: 'cubicInOut',
          // delay: 500,
        },
      })
    },

猜你喜欢

转载自blog.csdn.net/weixin_41886421/article/details/131509009
今日推荐