如何关闭 ASP.NET 图表控件中的 x 轴标签?
我想以编程方式打开/关闭图表控件上的标签。
该图表包含大量按人统计的统计数据,我希望能够通过删除标签来对其进行匿名化。
这可以从图表控件中完成,还是需要在基础数据表中完成?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,只需将 AxisX.LabelStyle 设置为 false
例如
Yes just set the AxisX.LabelStyle to false
e.g
我使用以下代码,并且效果也很好。
I use following code, and works well too.