Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
80
Column Resize Split Between Bands
posted

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?

Parents
No Data
Reply
  • 927
    Verified Answer
    posted

    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.

Children