AD
Administrator
Syncfusion Team
April 7, 2005 04:27 PM UTC
Does setting
this.gridGroupingControl1.TableOptions.ShowTableIndent = false;
do what you need?
DH
Devshi Halai
April 7, 2005 05:09 PM UTC
Hi Clay,
Sounds like what I need, but I''ve tried that and the indent is still there after the row header on a row.
Dev.
AD
Administrator
Syncfusion Team
April 7, 2005 06:31 PM UTC
Try both these properties:
this.gridGroupingControl1.TableOptions.ShowTableIndent = false;
this.gridGroupingControl1.TableOptions.ShowRowHeader = false;
AD
Administrator
Syncfusion Team
April 7, 2005 10:47 PM UTC
For child groups you can also set
TableOptions.IndentWidth = 0;
Stefan
>Try both these properties:
>
>this.gridGroupingControl1.TableOptions.ShowTableIndent = false;
>this.gridGroupingControl1.TableOptions.ShowRowHeader = false;
>
DH
Devshi Halai
April 8, 2005 09:07 AM UTC
Hi Stefan / Clay
Setting the indentWidth = 0, works fine.
Dev.