Hi,
The ChartFormatAxisLabel event of the ChartControl can be handled to provide custom labels for any of the Axes.
this.chartControl1.ChartFormatAxisLabel += new ChartFormatAxisLabelEventHandler(this.chartControl1_ChartFormatAxisLabelEventHandler);
private void chartControl1_ChartFormatAxisLabelEventHandler(object sender,ChartFormatAxisLabelEventArgs args )
{
if(args.IsAxisPrimary && args.AxisOrientation == Orientation.Horizontal)
{
args.Label = (args.Value*10).ToString();
args.Handled = true;
}
}
Please see the sample linked to below:
http://www.syncfusion.com/support/user/uploads/chartlabelscustom.zip
Regards,
Davis