Hi Murtaza,
Menubar sorts categories alphabetically by default. To change that, you have to open the plugin file wpm-db.php, locate the line 300:
WHERE tt.taxonomy = 'category' ORDER BY t.name ASC";
and change it to
WHERE tt.taxonomy = 'category' ORDER BY t.name DESC";
That will reverse the alphabetical order, as you need.