2011-11-08 69 views

回答

1

在創建數據數組時,您可以決定是否顯示數據。

var data = google.visualization.arrayToDataTable([ 
     ['Minutes', ''], ***//if you left the second item '' empty then it will disappear.*** 
     [ '5' , 12 ], 
     [ '10' , 34 ], 
     [ '15' , 56 ] 
     ]);