I want to hide the column you can see in the picture.
Regards
1 Answer, 1 is accepted
0
Dess | Tech Support Engineer, Principal
Telerik team
answered on 17 Sep 2018, 11:03 AM
Hello, Marc,
In order to hide the column that holds the group expander, you can set the TableElement.GroupIndent property to 0. However, make sure that the AutoExpandGroups property is set to true. Otherwise, you won't be able to expand the group:
public RadForm1()
{
InitializeComponent();
this.radGridView1.AutoExpandGroups = true;
this.radGridView1.TableElement.GroupIndent = 0;
}
I hope this information helps. If you need any further assistance please don't hesitate to contact me.
Regards,
Dess
Progress Telerik
Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers.Learn More.