MSChart:标签格式

发布于 2024-11-13 22:09:16 字数 311 浏览 3 评论 0原文

如何设置图表标签格式? 我只需要查看点后的 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?

current chart

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

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

发布评论

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

评论(4

指尖上得阳光 2024-11-20 22:09:16

尝试将 .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.

栀梦 2024-11-20 22:09:16

尝试这个

chart.ChartAreas.First().AxisY.LabelStyle.Format = "F2";

以及本页的详细信息
http://msdn.microsoft.com/en-us/library/dwhawy9k.aspx

try this

chart.ChartAreas.First().AxisY.LabelStyle.Format = "F2";

and the details on this page
http://msdn.microsoft.com/en-us/library/dwhawy9k.aspx

憧憬巴黎街头的黎明 2024-11-20 22:09:16

您还可以迭代您的列表。这是我对百分比所做的操作:

foreach (var point in Chart.Series[0].Points)
{
    point.Label = point.YValues[0].ToString("P2");
    point.LegendText = point.YValues[0].ToString("P2") + " - " + point.AxisLabel;
}

设置

You could also iterate over your list. Here is what I did for percentages:

foreach (var point in Chart.Series[0].Points)
{
    point.Label = point.YValues[0].ToString("P2");
    point.LegendText = point.YValues[0].ToString("P2") + " - " + point.AxisLabel;
}

Set

耀眼的星火 2024-11-20 22:09:16

在标签内设置 YValueType="Double" 和 LabelFormat="C"。

Set the YValueType="Double" and the LabelFormat="C" within the tag.

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