Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想以编程方式打开/关闭图表控件上的标签。
该图表是按人统计的负载,我希望能够通过删除标签来匿名化它。
这可以从图表控件完成,还是我需要在基础数据表中完成?
是的,只需将 AxisX.LabelStyle 设置为 false
例如
Chart1.ChartAreas["ChartArea1"].AxisX.LabelStyle.Enabled = false;
我使用以下代码,效果也很好。
chart1.ChartAreas[0].AxisY.Enabled = AxisEnabled.False;