ASP.NET图表控制货币格式

时间:2009-03-13 05:49:24

标签: asp.net formatting charts

我需要为Y轴标签使用不同的货币。我读过http://social.msdn.microsoft.com/Forums/en-US/MSWinWebChart/thread/56453466-06b1-4df4-8265-5c63dc18efe5/,但我仍在努力将美元符号更改为另一个字符。

1 个答案:

答案 0 :(得分:2)

在FormatNumber事件中:

if (e.ElementType == DataVisualization.Charting.ChartElementType.AxisLabels)
{
    System.Globalization.NumberFormatInfo nfi = new System.Globalization.NumberFormatInfo();
    nfi.CurrencySymbol = "#";
    e.LocalizedValue = string.Format(nfi, e.Format, e.Value);
}