2011-11-08 7 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 ] 
     ]); 
関連する問題