VSTO VB.NET Excel 图表、图表副标题 - 如何从代码访问图表文本框?

发布于 2024-12-10 03:17:47 字数 133 浏览 0 评论 0原文

我有一个 Excel 图表,我想在其上使用副标题。图表对象上没有 SubTitle 属性,因此我查看了 Excel 用户界面,发现只能使用文本框创建子标题。文本框看起来与图表相关,而不是工作表,那么我如何从代码访问该文本框?

谢谢...

I have a chart in Excel that I'd like to use a subtitle on. There is no SubTitle Property on the chart object, so I looked in the Excel User interface and found that you can only create a sub-title by using a text box. The text box looks like its associated with the chart, not the worksheet, so how would I access that text box from code?

Thanks...

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

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

发布评论

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

评论(1

空城之時有危險 2024-12-17 03:17:47

还有另一种可能,那就是在图表标题中包含副标题,例如:

Dim co As ChartObject

Set co = Sheet1.ChartObjects(1)
co.Chart.HasTitle = True
co.Chart.ChartTitle.Text = "First Quarter Sales" & vbCrLf & "Subtitle"
co.Chart.ChartTitle.Characters(22, 8).Font.FontStyle = "Bold Italic"

There is another possibility, and that is to include the subtitle in the chart title, for example:

Dim co As ChartObject

Set co = Sheet1.ChartObjects(1)
co.Chart.HasTitle = True
co.Chart.ChartTitle.Text = "First Quarter Sales" & vbCrLf & "Subtitle"
co.Chart.ChartTitle.Characters(22, 8).Font.FontStyle = "Bold Italic"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文