http://code.google.com/intl/pl/apis/chart/interactive/docs/quick_start.htmlGoogleの円グラフ
凡例に簡単に追加できますか?この例では :
Mushrooms (3)
Onions (1)
Olives (1)
Zucchini (1)
Pepperoni (2)
を作ることは可能ですか?はいの場合、どうですか?
http://code.google.com/intl/pl/apis/chart/interactive/docs/quick_start.htmlGoogleの円グラフ
凡例に簡単に追加できますか?この例では :
Mushrooms (3)
Onions (1)
Olives (1)
Zucchini (1)
Pepperoni (2)
を作ることは可能ですか?はいの場合、どうですか?
凡例文字列の最後にカウンタを含めることで簡単に行うことができます。以下のような行を配列生成であるあなたが何ができるか
var data = {
'Mushrooms': 3,
'Onions': 1,
'Olives': 1,
'Zucchini': 1,
'Pepperoni': 2
}
:
var rows = [];
for (ingredient in data) {
rows.push([
ingredient + " (" + data[ingredient] + ")",
data[ingredient
])
}
をあなたはthis fiddle
上記は単なるデモです。独自のオブジェクトを渡すと、好きなデータを渡すことができます。
オブジェクトを渡す(例えばJSON)
function drawChart(json_obj){
var options = {'title':'How Much Pizza I Ate Last Night, Total: ' + json_obj.count,
'width':400,
'height':300};
}
}