2009-03-13 13 views

答えて

2

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); 
}