删除 Google 个图表中的多余空格
Removing extra spaces in Google Charts
您会注意到图表中有许多不需要的 space(在左侧、顶部和底部)。如何清除它们?
var options = {
'width':500,
'height':400
};
您可以设置图表的顶部和左侧间距,以及宽度和高度。
尝试:
var options = {
chartArea: {
left: 20,
top: 30,
width: 500,
height: 300
}
};
看到一个demo of it here。
你也可以使用百分比,像这样:
var options = {
chartArea: {
left: '10%',
top: '5%',
width: '60%',
height: '80%'
}
};
您会注意到图表中有许多不需要的 space(在左侧、顶部和底部)。如何清除它们?
var options = {
'width':500,
'height':400
};
您可以设置图表的顶部和左侧间距,以及宽度和高度。
尝试:
var options = {
chartArea: {
left: 20,
top: 30,
width: 500,
height: 300
}
};
看到一个demo of it here。
你也可以使用百分比,像这样:
var options = {
chartArea: {
left: '10%',
top: '5%',
width: '60%',
height: '80%'
}
};