hi experts
I create new Y-axes for each new graph, but the axes are created to the left of the previous axis. Is it possible to create these axes to the right of the previous one.
I create axes like this:
ChartSeries series = new ChartSeries();
ChartAxis newYaxis = new ChartAxis();
newYaxis.GridLineType.ForeColor = Color.LightGray;
newYaxis.Orientation = ChartOrientation.Vertical;
chartControl1.Axes.Add(newYaxis);
I drew what it should look like ;)
Attachment:
image_87ce3716.zip