Hi Jyothi,
Sorry for the delay in responding.
Multiple Axes can be implemented by using ChartAxis class and adding it to the chartcontrol. Then we can change the location of these axes to the desired location by using the Location property of the axes.
Here is the code snippets:
this.axis.LocationType = ChartAxisLocationType.Set;
this.axis1.LocationType = ChartAxisLocationType.Set;
axis.Location = new PointF(this.ChartWebControl1.PrimaryYAxis.Location.X, this.ChartWebControl1.PrimaryYAxis.Location.Y - 75);
axis1.Location = new PointF(this.ChartWebControl1.PrimaryXAxis.Location.X, this.ChartWebControl1.PrimaryYAxis.Location.Y - 75);
Please refer the sample in the link to illustrate this:
http://websamples.syncfusion.com/samples/Chart.Web/6.1.0.34/F70143/main.htmPlease try this and let me know if you need further assistance.
Regards,
Jisha