Google饼图不适合容器

时间:2013-06-07 12:03:16

标签: javascript google-api google-visualization pie-chart

我正在使用Google Chart API并开发了一个参考 Visualization: Pie Chart的饼图

我的饼图的截图: -

Chart

屏幕截图通过firebug显示容器......

出现了问题,低不透明蓝色是图表出现的容器(即div),有些不适合它所包含的外部div并显示出一些无用whitespaces ,如果我的代码是正确的,饼图应该适合div ...

使用此代码: -

var options_pie = {
chartArea: { left: 0, top: 0, width: "100%", height: "60%"},
colors: ['#59ea54', '#a14660', '#f3cf4a', '#16a2c2', '#ce7374', '#39ae9b'],
legend: 'none',
};

var chartPie = new google.visualization.PieChart(document.getElementById('chart_pie'));
chartPie.draw(data, options_pie);

我不知道,我错过了什么或api的问题?

1 个答案:

答案 0 :(得分:5)

尝试修改宽度和高度,例如:

 options.chartArea = {left:0, 'width': '80%', 'height': '80%'}