如何将文本添加到Google Chart值文本中

时间:2017-03-24 16:16:52

标签: google-visualization

我目前正在使用Google图表,Gauge图表。我想添加以及数据值。我怎么能这样做。

附上屏幕截图以供参考。

我希望 3.9%而不是仅 3.9

enter image description here

修改

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);

  }

0 个答案:

没有答案