我目前正在使用Google图表,Gauge图表。我想添加%以及数据值。我怎么能这样做。
附上屏幕截图以供参考。
我希望 3.9%而不是仅 3.9
修改
this.data = google.visualization.arrayToDataTable([
['Label', 'Value'],
['Download%', {v:0,f:'0%'}]
]);
在我的更新功能
中 drawChart() {
this.data.setValue(0, 1, this.progress);
this.chart.draw(this.data, this.options);
}