How to control the visbility of row headers?
The ShowRowHeader property in the TableOptions controls the visibility settings for the row header column. This property is true by default. Please refer the below code snippet which illustrates this:
C#
this.GridGroupingControl1.TableOptions.ShowRowHeader = false;
VB
Me.GridGroupingControl1.TableOptions.ShowRowHeader = False