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
925
Remove the white borders around the group by rows?
posted

What properties do I need to set to remove the white borders around the group by rows (see attached)?

Thanks

Scott

  • 20872
    Offline posted

    Hello Scott,

    Please do not hesitate to contact us if you have any further questions with this matter.

  • 370
    Suggested Answer
    posted

    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;

    }

     

    Thanks

    Vaibhav