В событии 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);
}