I want to display UltraWinGrid Hierarchy bands with Expansion indicators but without indents. Is there any way to achieve this?
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.
Indentation = 0 when applied to child bands(after bands(1)) moves the bands to the left but not the Expansion Indicators. My requirement is to move the expansion indicators as well so that all the parent and child bands appear in one line and indicators on the left.