Excel 2010 中的默认图表大小

发布于 2024-12-12 07:01:43 字数 111 浏览 0 评论 0原文

是否有一种简单的方法可以为 Excel 2010 中创建的所有新图表设置默认大小?

我需要它们对于办公室的一群用户来说是 10,52 厘米,而且我似乎无法找到如何在不使用宏的情况下做到这一点。

Is there an easy way to set a default size for all new charts created in Excel 2010?

I need them to be like 10,52cm for a bunch of users at the office, and I can't seem to find how to do this without using macros.

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

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

发布评论

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

评论(1

鱼窥荷 2024-12-19 07:01:43

虽然您无法设置默认图表大小,但您可以添加事件处理程序来修改任何新图表(但需要 vba 代码)
(这是 Excel 2010 的新事件)

将其放入工作簿模块中:

Private Sub Workbook_NewChart(ByVal Ch As Chart)
    Ch.Parent.Height = 400
    Ch.Parent.Width = 600
End Sub

注意:这假设您可以将代码添加到要添加到的工作簿图表中。如果您愿意,可以创建一个包含处理所有工作簿事件的代码的外接程序。这将消除在所有工作簿中都包含此代码的需要。

While you cant set the default chart size you can add a Event handler to modify any new charts (needs vba code though)
(This is a new event to Excel 2010)

Put this in the Workbook module:

Private Sub Workbook_NewChart(ByVal Ch As Chart)
    Ch.Parent.Height = 400
    Ch.Parent.Width = 600
End Sub

Note: this assumes you can add code to the workbook charts will be added to. If you prefer, you can create an addin that includes code to handle all workbook events. This would remove the need to have this code in all workbooks.

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