2
我的谷歌餅圖百分比削減顯示,我不知道爲什麼,這裏是JavaScript函數得出這樣的圖表爲什麼我的百分比在谷歌餅圖上顯示?
function drawChart(arr, id, title)
{
var data = new google.visualization.DataTable();
data.addColumn('string', 'Topping');
data.addColumn('number', 'Slices');
console.log(arr);
data.addRows(arr);
var options = {'title': title,
'width':350,
'height':200};
var chart = new google.visualization.PieChart(document.getElementById(id));
chart.draw(data, options);
}
這裏是drawChart(arr, 'ajAcChart', 'répartition académique des <?php echo $this->ajDemands; ?> demandes d\'informations');
呼叫
而且resulting圖像結果
正如你所看到的66.7%顯示不正確,如果我突出顯示文本,我看到.7。
感謝
如果我改變fontSize的家庭,甚至像5顯示在圖表的邊框的66.7文字一個小數目,它並不想裝進... – Robin 2013-02-10 04:00:11