RadControls for WinForms

The Text for RadMenuItem can be displayed on multiple lines as shown in the screenshot below.

In the Property Window for a RadMenuItem use the drop down list to invoke the editor for multiple lines. Ctrl-Shift creates a new line in the editor.  Ctrl-Enter accepts changes and closes the editor. Esc cancels changes and closes the editor. 

In code use Environment.NewLine to separate strings:

Copy[C#]
radMenuItem1.Text = "Bar Chart - " +
 Environment.NewLine +
 "Compare multiple series of data";
Copy[VB.NET]
radMenuItem1.Text = "Bar Chart - " & Environment.NewLine & "Compare multiple series of data"

Menu Item Height

The AllItemsEqualHeight property controls whether the RadMenu allows some menu items to be taller than others. By default, menu items with multiple lines of text are taller than menu items with single lines of text. If you set this property to True, the height of all items increases to match that of the tallest items.

CopyC#
radMenu1.AllItemsEqualHeight = true;
CopyVB.NET
radMenu1.AllItemsEqualHeight = True