ecomfe / echarts-wordcloud

Word Cloud extension based on Apache ECharts and wordcloud2.js
1.66k stars 708 forks source link

[QUESTION] Is it possible to control the animation or disable it? #94

Open nigellima opened 4 years ago

nigellima commented 4 years ago

Hello,

Is it possible to control the animation duration or disable it? I'm rendering some large data and all the time I make changes the words start to pop up on the view really slowly, like in your example.

I've tried to set animation to false like this:

const config: any = {
      backgroundColor: 'transparent',
      tooltip: {
        show: true,
      },
      series: this.getSeries(),
      animation: false,
    };

Or set the duration something low or 0, but they keep showing up at the same speed:

const config: any = {
      backgroundColor: 'transparent',
      tooltip: {
        show: true,
      },
      series: this.getSeries(),
      animationDuration: function (idx) {
        return 0;
      }
    };

I appreciate any help. And, btw, congrats for the awesome tool.

Kind regards,