hi, i show hierachical data in a ultragrid.but when i set the size of the columns it is not possible to have different sizes in the columns.
the above column (band0) should be a size of 30*8 and the bottom column (band1) should be a size of 4*8 . but equal what i set always both columns have the same size.
Me.UltraGrid1_Auftraege_Status.DisplayLayout.Bands(1).Columns("col1").Width = 8 * 8
Me.UltraGrid1_Auftraege_Status.DisplayLayout.Bands(0).Columns("col2"
).Width = 30 * 8
Ok thanks, now it working
Thanks, seems now to be correct.
Hello,
You probably have to set the following property in order to achieve what you are looking for:
ultraGrid1.DisplayLayout.Override.AllowColSizing = AllowColSizing.Free;
Please let me know if that is not what you are looking for.