New to Telerik UI for WinForms? Download free 30-day trial

Rotation

RadDiagram gives you the ability to rotate shapes by dragging their Rotation Thumb or by changing their RotationAngle property.

Enable/Disable rotation

By default, the RadDiagram is enabled for rotation manipulation. In order to disable this functionality, you can set the IsRotationEnabled property to false.

WinForms RadDiagram Enable/Disable Rotation

this.radDiagram1.IsRotationEnabled = false;

Rotation Angle

You can rotate shapes by using their RotationAngle property:

WinForms RadDiagram Rotation Angle

RadDiagramShape sourceShape = new RadDiagramShape()
{
    Text = "Text",
    BackColor = System.Drawing.Color.LightBlue,
    ElementShape = new TabVsShape(),
};
sourceShape.RotationAngle = 45;