What properties do I need to set to remove the white borders around the group by rows (see attached)?
Thanks
Scott
Hello Scott,
Please do not hesitate to contact us if you have any further questions with this matter.
Hi Scott,
You may set the BorderAlpha property of GroupByRowAppearance to Transparent, it will resolve the issue.
To do that you may use the following code
private void Form1_Load(object sender, EventArgs e) { this.ultraGrid1.DisplayLayout.Override.GroupByRowAppearance.BorderAlpha = Infragistics.Win.Alpha.Transparent; }
private void Form1_Load(object sender, EventArgs e)
{
this.ultraGrid1.DisplayLayout.Override.GroupByRowAppearance.BorderAlpha = Infragistics.Win.Alpha.Transparent;
}
Vaibhav