MSChart:标签格式
如何设置图表标签格式? 我只需要查看点后的 2 位数字。
我尝试 chart.ChartAreas.First().AxisY.LabelStyle.Format = "#.##";
和 0.00
我还尝试设置 Series[0 ].LabelFormat = "0.00"
和 #.##
但没有成功。
怎么了?
How can I format chart label?
I need to see only 2 digits after point.
I try chart.ChartAreas.First().AxisY.LabelStyle.Format = "#.##";
and 0.00
Also I try to set Series[0].LabelFormat = "0.00"
and #.##
and without success.
What is wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
尝试将
.AxisX.LabelStyle.Format
设置为"{0:0.00}"
- 我最近必须在我的一张图表上执行此操作,这样它应该可以工作。Try setting
.AxisX.LabelStyle.Format
to"{0:0.00}"
- I had to do it recently on one of my charts so it should work.尝试这个
以及本页的详细信息
http://msdn.microsoft.com/en-us/library/dwhawy9k.aspx
try this
and the details on this page
http://msdn.microsoft.com/en-us/library/dwhawy9k.aspx
您还可以迭代您的列表。这是我对百分比所做的操作:
设置
You could also iterate over your list. Here is what I did for percentages:
Set
在标签内设置 YValueType="Double" 和 LabelFormat="C"。
Set the YValueType="Double" and the LabelFormat="C" within the tag.