我有一个使用PHP从数据库动态检索数据的google规范,问题是我希望规范在我用过的底部标签中有一个后缀:
compile 'com.github.arcnor:universal-tween-engine:6.3.4'
compile 'com.github.arcnor:universal-tween-engine:6.3.4:sources'
这一切正常,直到我开始随时间改变仪表值。只有指针移动,底部女巫的标签说“值+%”保持不变。
任何人都知道如何解决这个问题?!?
仪表代码:
// This is what creates the problem
var formatter = new google.visualization.NumberFormat({
suffix: '%',
fractionDigits: 0
});
formatter.format(data, 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