Last Updated: February 25, 2016
·
771
· hjwu

How to hide group by box programmatically

Set the GridView.OptionsView.ShowGroupPanel to false.

GridView gv = (GridView)gc.MainView;
gv.OptionsView.ShowGroupPanel = false;

Reference : How to hide group by box programmatically