Hello Everybody.
I want to make the perfect look to my ultragrd. I hope you can help me with that.
The goal is to make all the columns viable without horizontal scroll bar no matter what is the resolution (no low resolutions like 600*800 are considered). the columns should fill all the screen (I don't want to see the background of the ultragrid if the columns not filling all the screen)
what I done untill now is:
1.I enabled multyline on all cell and column header.
gridBR.DisplayLayout.Override.WrapHeaderText = DefaultableBoolean.True;
2. I enabled the text wrap
gridBR.DisplayLayout.Override.CellMultiLine = DefaultableBoolean.True;
3.made the rows autosize
gridBR.DisplayLayout.Override.RowSizing = RowSizing.AutoFixed;
You can see the problem in the attached snapshot . I marked it with red color. the goal is to make this gap to disappear.
Any solution for this?
Thanks,
Igal.
Set AutoFitStyle on the DisplayLayout.
Great,
This helped. thank you.