Exemplo n.º 1
0
 void SecondaryAxis_LabelCreated(object sender, ChartAxis.LabelCreatedEventArgs e)
 {
     e.AxisLabel.LabelContent = e.AxisLabel.LabelContent + "%";
 }
Exemplo n.º 2
0
        private void NumericalAxis_LabelCreated(object sender, ChartAxis.LabelCreatedEventArgs e)
        {
            decimal d = Convert.ToDecimal(e.AxisLabel.LabelContent);

            e.AxisLabel.LabelContent = d.ToString("#,#", System.Globalization.CultureInfo.InvariantCulture);
        }