如何关闭 ASP.NET 图表控件中的 x 轴标签?

发布于 2024-10-15 02:37:15 字数 109 浏览 2 评论 0原文

我想以编程方式打开/关闭图表控件上的标签。

该图表包含大量按人统计的统计数据,我希望能够通过删除标签来对其进行匿名化。

这可以从图表控件中完成,还是需要在基础数据表中完成?

I want to programmatically turn on/off the labels on an Chart Control.

The chart is for a load of stats, by person, and I want to be able to anonymise it by removing the labels.

Can this be done from the Chart Control, or do I need to do it at the underlying data-table?

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

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

发布评论

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

评论(2

缺⑴份安定 2024-10-22 02:37:15

是的,只需将 AxisX.LabelStyle 设置为 false

例如

Chart1.ChartAreas["ChartArea1"].AxisX.LabelStyle.Enabled = false;

Yes just set the AxisX.LabelStyle to false

e.g

Chart1.ChartAreas["ChartArea1"].AxisX.LabelStyle.Enabled = false;
苏别ゝ 2024-10-22 02:37:15

我使用以下代码,并且效果也很好。

chart1.ChartAreas[0].AxisY.Enabled = AxisEnabled.False;

I use following code, and works well too.

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