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.
虽然我在 asp 图上附有值,但我需要的是在每个条形图上显示不同的值。
例如,我需要显示 50(而不是显示 5 的标签),而不是条形图上的 5。
我想知道的是我应该使用什么属性来操作每个条上显示的标签。
Chart1.ChartAreas[0].AxisX.TitleFont = new Font("Times New Roman", 11f);
提前致谢。
标签的值可以设置如下:
Chart1.Series["Series1"].Points[counter].Label = "2";