Hello,
Is there any way to remove the space between parent row and child rows?
In my grid, I have space between row islands (good), but the same space is also between parent row and the child rows within each island (bad).
Thanks in advance,
Trausti
Thank you Danko, this worked for me.
Setting the InterBandSpacing took out all band spacing, but I was able to get around that by setting RowSpacingAfter on the last row of each child section, so this was not a problem.
Thanks again!
Hello Trausti,
What you could try here is setting InterBandSpacing of the Layout to 0 and verify if this is what you are looking in the InitializeLayout event of the UltraGrid control like:
private void ultraGrid1_InitializeLayout(object sender, Infragistics.Win.UltraWinGrid.InitializeLayoutEventArgs e) { e.Layout.InterBandSpacing = 0;//If the above doesn't help you could try modifying the ones below//e.Layout.Override.RowSpacingAfter //e.Layout.Override.RowSpacingBefore}
Please feel free to let me know if you have any further questions or if I misunderstood you.