将后缀添加到google gauge底部标签可防止其更改

时间:2017-01-02 12:01:20

标签: javascript google-api google-visualization google-gauges

我有一个使用PHP从数据库动态检索数据的google规范,问题是我希望规范在我用过的底部标签中有一个后缀:

compile 'com.github.arcnor:universal-tween-engine:6.3.4'
compile 'com.github.arcnor:universal-tween-engine:6.3.4:sources'

这一切正常,直到我开始随时间改变仪表值。只有指针移动,底部女巫的标签说“值+%”保持不变。

Image of the busy gauge

任何人都知道如何解决这个问题?!?

仪表代码:

  // This is what creates the problem 
  var formatter = new google.visualization.NumberFormat({
    suffix: '%',
    fractionDigits: 0
  });
  formatter.format(data, 1);

1 个答案:

答案 0 :(得分:0)

尝试在更新数据后调用formatter.format(data,1):

setInterval(function() {
          data.setValue(0, 1, 40 + Math.round(60 * Math.random()));
          formatter.format(data, 1);
          chart.draw(data, options);
        }, 1000);

查看此fiddle

希望这会有所帮助 的Krzysztof