无法增加 Google 饼图宽度
Unable to increase Google piechart width
我正在尝试创建 google 饼图,此饼图增加了圆的高度和宽度,但我的案例孔 div 尺寸增加了
html:-
<div id="RedFlagChart" class="square2">
</div>
css:-
#RedFlagChart {
width: 800px;
height: 800px;
position: absolute;
top: -30px;
left: -30px;
}
修改chartArea
属性设置需要的高度和宽度
chartArea:{left:20,top:0,width:'50%',height:'75%'}
更多信息在 documentation
我正在尝试创建 google 饼图,此饼图增加了圆的高度和宽度,但我的案例孔 div 尺寸增加了 html:-
<div id="RedFlagChart" class="square2">
</div>
css:-
#RedFlagChart {
width: 800px;
height: 800px;
position: absolute;
top: -30px;
left: -30px;
}
修改chartArea
属性设置需要的高度和宽度
chartArea:{left:20,top:0,width:'50%',height:'75%'}
更多信息在 documentation