Chart for WinForms Task-Based Help / Rotating the Y-Axis Title
In This Topic
Rotating the Y-Axis Title
In This Topic

To rotate the Y-Axis title, use the C1Chart.ChartArea.AxisY.Rotation enum like in the following example:

To write code in Visual Basic

Visual Basic
Copy Code
c1Chart2.ChartArea.AxisY.Rotation = RotationEnum.Rotate180

To write code in C#

C#
Copy Code
c1Chart2.ChartArea.AxisY.Rotation = RotationEnum.Rotate180;
See Also