Hi Anup,
You can set the RadMenu width in percentage as shown below.
ASPX:
Note: When we set the RadMenu width in percentage, it will take the width according to container's width.
If you want tot set thewidth in percentage from code behind, then try the following code snippet;
RadMenu1.Width = Unit.Percentage(100);
-Shinu.