Hi,
I need a grouping control like the one in UltraGrid. Since I could not find any I decided to to with an empty UltraGrid with just the columns defined. It is working but I need to hide the area containing the rows and column headers.
I have attached a screen shot of what I have so far. How can I just keep the Grouping control and hide the rest.
Is there any other control/method to achieve this?
Thanks,
Abhinav
Hello,
I strongly believe that you ned a tree. The grouping hierarchy is a kind of tree where each node might have only one child. So if you need just only to represent this hierarchy I think that you could use UltraTree.
About your achievement, if you not going to use “Data Part” of the grid and just the group header, then you could resize UltraGrid’s height to be exact as the group header height. Or you could hide all column headers of the band:
ultraGrid1.DisplayLayout.Bands[0].ColHeadersVisible = false;
Please let me know if you have any further questions.
HI Guys,
Thanks. The ultraGrid1.DisplayLayout.Bands[0].ColHeadersVisible = false did the trick :)