How to make WinForms chart control primary Y axis to be drawn on both sides of the chart?

StackOverflow https://stackoverflow.com/questions/22124533

  •  18-10-2022
  •  | 
  •  

문제

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

도움이 되었습니까?

해결책

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.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top