【问题标题】:GWT Highcharts - disable series animationGWT Highcharts - 禁用系列动画
【发布时间】:2016-01-06 07:18:30
【问题描述】:

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

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

【问题讨论】:

    标签: javascript gwt highcharts gwt-highcharts


    【解决方案1】:

    请尝试这种方法:

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

    当然,您需要放置PlotOptions 的适当子类,而不是setLinePlotOptionsnew LinePlotOptions()

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 2019-09-24
      • 1970-01-01
      • 2023-03-22
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多