删除谷歌图表中的填充?

发布于 2024-10-04 02:36:20 字数 189 浏览 1 评论 0原文

我想知道为什么谷歌图表在未指定上/右/左轴时添加空白填充。

alt text

选择图像,您会发现除了已经填充的底部之外还有一个巨大的填充。这就是为什么,如何删除它?

具体来说,谈论左右填充。

谢谢。

I'm wondering why google charts add a blank padding when not specifying the top/right/left axises.

alt text

Select the image and you'll find a huge padding except the bottom which is already filled & that's why, how to remove that?

Specifically, Talking about the right and left paddings.

Thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

谷夏 2024-10-11 02:36:20

您可以按如下方式使用 chartArea 选项:

options.chartArea = { left: '8%', top: '8%', width: "70%", height: "70%"};

可以在此处查看更多文档:

https://developers.google.com/chart/interactive/docs/gallery/piechart#Configuration_Options

You can use the chartArea option as follows:

options.chartArea = { left: '8%', top: '8%', width: "70%", height: "70%"};

More documentation can be viewed here:

https://developers.google.com/chart/interactive/docs/gallery/piechart#Configuration_Options

紫罗兰の梦幻 2024-10-11 02:36:20

使用 Google Chart API 时,您可以消除填充。我做了一个例子 此处

相关参数是chma

根据文档:

您可以指定图表边距的大小(以像素为单位)。边距是从指定的图表尺寸(chs)向内计算的;增加边距大小不会增加图表的总大小,但会在必要时缩小图表区域。

您可以在此处的 Chart Playground 中在线尝试这些参数。

哈!

alt text

编辑:来自 Google 的警告

重要提示:自 2012 年 4 月 20 日起,Google 图表工具的图像图表部分已正式弃用。它将根据我们的弃用政策继续运行。

When using the Google Chart API you can eliminate the padding. I made an example Here.

The relevant parameter is chma.

According to the documentation:

You can specify the size of the chart's margins, in pixels. Margins are calculated inward from the specified chart size (chs); increasing the margin size does not increase the total chart size, but rather shrinks the chart area, if necessary.

You can try these parameters online in the Chart Playground HERE.

HTH!

alt text

Edit: Warning from Google

Important: The Image Charts portion of Google Chart Tools has been officially deprecated as of April 20, 2012. It will continue to work as per our deprecation policy.

鹤仙姿 2024-10-11 02:36:20

不幸的是,正如图表边距文档中所述,您只能设置图表每一侧的最小边距。

谷歌本身添加了一些不必要的边距(主要是在顶部),并且没有任何参数可以阻止这种行为。

Unfortunately, as said in Chart Margins documentation you can set only the minimum margin on each side of the chart.

Google adds some unnecessary margin (mostly on top) itself and there is no parameter which can stop this behavior.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文