Dear all,
(1) How to make the ultragrid column header resizeable??
(2) How to make the ultragrid Auto Fill??
(3) How to make the part in the below picture to be invisible??
Hello,
What you could do is setting the following in the InitializeLayout event of the UltraGrid :
1. e.Layout.Override.AllowColSizing = AllowColSizing.Free;
2. e.Layout.AutoFitStyle = AutoFitStyle.ResizeAllColumns;
or
e.Layout.AutoFitStyle = AutoFitStyle.ExtendLastColumn;
3. e.Layout.GroupByBox.Hidden = true;
Please let me know if that is what you are looking for.