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
195
UltraWinGrid Hierarchy bands
posted

I want to display UltraWinGrid Hierarchy bands with Expansion indicators but without indents. Is there any way to achieve this?

Parents
  • 71886
    Offline posted

    Hello Abhijit,

    You could try with the 'Indentation' property on the desired child band, like this:

            private void ultraGrid1_InitializeLayout(object sender, Infragistics.Win.UltraWinGrid.InitializeLayoutEventArgs e)

            {

                e.Layout.Bands[1].Indentation = 0;

            }

    Please feel free to let me know if a question about our tool set comes up on your mind.

Reply Children