GWT Highcharts - 禁用系列动画

时间:2016-01-06 07:18:31

标签: javascript gwt highcharts gwt-highcharts

在GWT Highcharts中绘制系列时如何禁用动画?如果我直接在JavaScript中使用Highcharts,this would be the way to do it。在我的GWT代码中,我尝试了以下内容但没有成功:

chart.setOption("/series/animation", false);

1 个答案:

答案 0 :(得分:1)

请尝试这种方法:

final Chart chart = new Chart()
    .setLinePlotOptions( new LinePlotOptions()
                    .setAnimation(false);
  )

当然代替setLinePlotOptionsnew LinePlotOptions(),您需要设置PlotOptions的正确子类