Hopefully a picture will help...
The first two arrows (top to bottom) are pointing at the whitespace. I want to reduce them. The last arrow is pointing at the tree/line structure, I want to remove that. Oh, and I just remembered something that's missing an arrow, the black triange "active" thing, I want to remove that.
Hello sforcier,
You could remove the tree/line structure with setting the 'RowConnectorStyle' property of the layout to 'None':
this.ultraGrid1.DisplayLayout.RowConnectorStyle = Infragistics.Win.UltraWinGrid.RowConnectorStyle.None;
As to the black arrow - it seems to me that you are using row selectors, you could turn them off from:
this.ultraGrid1.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
As to the white spaces, you could set the 'Indentation' property of the child band:
ultraGridBand2.Indentation = 5;
Please feel free to let me know if I misunderstood you or if you have any other questions.
Thanks, you are correct on all accounts!