.NET 图表控件 - X 轴文本旋转

发布于 2024-10-17 22:21:41 字数 81 浏览 2 评论 0原文

如何旋转 Microsoft ASP.NET 图表控件 X 轴上文本的文本方向?我正在使用 .NET 4。

这是在该系列下完成的吗?

How do I rotate the text orientation of the text on the X Axiz of the Microsoft ASP.NET Chart Control? I am using .NET 4.

Is this done under the Series?

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

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

发布评论

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

评论(2

ㄖ落Θ余辉 2024-10-24 22:21:41
MyChart.ChartAreas[0].AxisX.LabelStyle.Angle = -90; // Can vary from -90 to 90.
MyChart.ChartAreas[0].AxisX.LabelStyle.Angle = -90; // Can vary from -90 to 90.
暖风昔人 2024-10-24 22:21:41

如果您还需要连续更改值文本的文本方向,您可以进行如下设置:

MyChart.Series[0].SmartLabelStyle.Enabled = false;
MyChart.Series[0].LabelAngle = 90; // Can vary from -90 to 90;

希望这对您有用。 :)

If you also need to change text orientation of Value text in series, you can set up as below:

MyChart.Series[0].SmartLabelStyle.Enabled = false;
MyChart.Series[0].LabelAngle = 90; // Can vary from -90 to 90;

I hope this is useful for you. :)

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