gpt4 book ai didi

javascript - 删除 Google Charts 中的多余空格

转载 作者:行者123 更新时间:2023-11-30 16:54:08 25 4
gpt4 key购买 nike

chart

您会注意到图表中有许多不需要的空间(在左侧、顶部和底部)。如何清除它们?

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%'
}
};

关于javascript - 删除 Google Charts 中的多余空格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30013045/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com