Hi Louis,
Thanks for contacting Syncfusion support.
We have analyzed your query. We have prepared a sample for adding multiple y axis to chart. In this, we have used two layouts in which we have added two vertical axes(y axes) in one layout and another two vertical axes(y axes) in another layout. Find the code snippet below to add multiple y axes to chart.
Windows forms [C#]:
//Adding individual axis to chart Axes
this.chart.Axes.Add(secYAxis);
this.chart.Series[1].YAxis = secYAxis;
this.chart.Axes.Add(secYAxis2);
this.chart.Series[2].YAxis = secYAxis2;
this.chart.Axes.Add(secYAxis3);
this.chart.Series[3].YAxis = secYAxis3;
//Adding axes to layouts
layout2.Axes.Add(axis);
layout2.Axes.Add(secYAxis);
layout1.Axes.Add(secYAxis2);
layout1.Axes.Add(secYAxis3);
//Adding layouts to ChartArea
this.chart.ChartArea.YLayouts.Add(layout1);
this.chart.ChartArea.YLayouts.Add(layout2);
|
Screenshot:
Sample for reference can be find from below link.
If this is not your exact requirement, kindly share the screenshots of your exact requirement, so that we can provide you the solution sooner.
Thanks,
Dharani.