在GWT Highcharts中绘制系列时如何禁用动画?如果我直接在JavaScript中使用Highcharts,this would be the way to do it。在我的GWT代码中,我尝试了以下内容但没有成功:
chart.setOption("/series/animation", false);
答案 0 :(得分:1)
请尝试这种方法:
final Chart chart = new Chart()
.setLinePlotOptions( new LinePlotOptions()
.setAnimation(false);
)
当然代替setLinePlotOptions
和new LinePlotOptions()
,您需要设置PlotOptions
的正确子类