AD
Administrator
Syncfusion Team
October 9, 2006 06:23 AM UTC
Hi Karsten,
By default the GridGroupingControl does not support the Transparent backcolor. But you can derive the GridGroupingControl and set a style property in the constructor to enable this.
public class MyGrid : GridGroupingControl
{
public MyGrid : base()
{
this.SetStyle(ControlStyles.SupportsTransparentBackColor, true);
}
}
Let us know if this helps.
Regards,
Haneef