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