2015-11-25 79 views
0

我有一個使用谷歌可視化的柱狀圖。顯示谷歌柱狀圖的價值

enter image description here

眼下,爲了讓我看到每個值,我不得不懸停在各個圖表看的價值。例如,2.82 kbps

我想在每張圖的頂部或圖的內部顯示我的所有值。

我該如何展示這樣的東西?

任何提示,將非常感謝!

+0

可能與谷歌的[表](https://google-developers.appspot.com/chart/interactive/docs/gallery/table)圖表結合......? – WhiteHat

回答

3

你應該看看註釋。

柱形圖文檔有一個掩碼here

要麼將​​註釋列添加到您的DataTable,則第1列的註釋應該位於索引之後,或者您可以創建視圖和stringify源列。

view.setColumns([0, //The "descr column" 
1, //Downlink column 
{ 
    calc: "stringify", 
    sourceColumn: 1, // Create an annotation column with source column "1" 
    type: "string", 
    role: "annotation" 
}]); 

該註釋是放置在列頂部的柱狀圖的標準。

Here is my play-around-fiddle