Spreadsheetgear 图表 x 轴文本方向

发布于 2024-08-06 02:28:54 字数 172 浏览 2 评论 0原文

我正在使用 Spreadsheetgear 来创建和修改图表。我可以创建图表并轻松修改数据,但是,我似乎无法按照我想要的方式修改文本的方向。

文本位于 x 轴上,我试图让它以 45 度角显示。我可以通过右键单击图表并将方向角度手动设置为 45 来手动执行此操作,但我想使用 C# 来执行此操作。任何帮助将不胜感激。

I am using Spreadsheetgear to create and modify charts. I can create a chart and modify the data easily, however, I cannot seem to modify the orientation of text the way that I want.

The text lies on the x-axis and I am trying to get it to display at a 45 degree angle. I can do this manually by right clicking on the chart and manually setting the orientation angle to 45, but I want to do this using C#. Any help would be greatly appreciated.

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

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

发布评论

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

评论(1

月牙弯弯 2024-08-13 02:28:54
IChart chart = ...;
chart.Axes[SpreadsheetGear.Charts.AxisType.Category].TickLabels.Orientation = 45;
IChart chart = ...;
chart.Axes[SpreadsheetGear.Charts.AxisType.Category].TickLabels.Orientation = 45;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文