I have a grid with two bands. When I resize a column in one band it resizes the column in the other band at the same time. The data in the column is not related between the two bands. How can I change this so resizing only effects the band I am working on?
Set the grid's AllowColSizing property to Free, like this:
ultraGrid1.DisplayLayout.Override.AllowColSizing = AllowColSizing.Free;
This will allow the columns in each band to be sized independently.
Thank-you. That worked just as I want it to.