4

Y axis and its level labels are only drawn on the left by default while the right side appears unbordered and unlabelled. How to make them to be duplicated on the right side?enter image description here

Ivan
  • 63,011
  • 101
  • 250
  • 382
  • I believe this should answer your question : http://stackoverflow.com/questions/3458791/ms-chart-control-two-y-axis – M0eB Mar 02 '14 at 06:46

1 Answers1

4

The Primary Y-Axis can't be duplicated to draw in the right side. You have to use Secondary Y-Axis for that.

chart1.ChartAreas[ChartName].AxisY2.Enabled = AxisEnabled.True;

Enabling this duplicates the primary axis values in the right side.

Junaith
  • 3,298
  • 24
  • 34