Hi allI have set the following:"DisplayLayout.Override.CellAppearance.BackColor = Color.Grey;""DisplayLayout.Override.CellSpacing = 10;""DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.None;""DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.None;""DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.None;"
Now I get a big white border arround the cells, why ?? See picture.What setting do I have to set to remove the border ?Thanks and best regardsFrank Uray
Hello Frank,
I am checking about the progress of this issue. Please let me know If you need any further assistance on this.
This is what I am getting using your code sample:
It seems fine for me - I do not see any white borders here. If you are referring to the big white spaces between the cells, I believe that this is coming from the 'CellSpacing' property which is set to 10.
So this is not a border but a background and you could override it with the following code:
DisplayLayout.Override.RowAppearance.BackColor = Color.Red;
Please feel free to let me know if I misunderstood you or if you have any other questions.