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
1210
Remove space between parent row and child rows
posted

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

Parents
  • 20872
    Verified Answer
    Offline posted

    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.

Reply Children
No Data