无法增加Google饼图宽度

时间:2018-06-06 05:54:28

标签: jquery css google-pie-chart

我正在尝试创建谷歌饼图这个饼图增加圆的高度和宽度,但我的案例孔div大小增加 html: -

<div id="RedFlagChart" class="square2">
                    </div>

CSS: -

 #RedFlagChart {
        width: 800px;
        height: 800px;
        position: absolute;
        top: -30px;
        left: -30px;
} 

1 个答案:

答案 0 :(得分:0)

修改chartArea属性设置所需的高度和宽度

chartArea:{left:20,top:0,width:'50%',height:'75%'}

documentation

中的更多信息

demo