Frozen columns border

I have frozen an extra column but it now has a blue dashed vertical border. How can I get rid of this? The OnQueryColStyle indicates that there are no borders set... Cheers

2 Replies

AD Administrator Syncfusion Team February 17, 2005 10:30 AM UTC

You can change the color of this line by setting: this.gridControl1.Properties.FixedLinesColor = Color.Red; If you want to hide it, then it is a little more work. gridControl1.TableStyle.Borders.Right = new GridBorder(this.gridControl1.Model.Options.DefaultGridBorderStyle, this.gridControl1.Properties.GridLineColor); gridControl1.TableStyle.Borders.Bottom = new GridBorder(this.gridControl1.Model.Options.DefaultGridBorderStyle, this.gridControl1.Properties.GridLineColor); this.gridControl1.Model.Properties.DisplayVertLines = false; this.gridControl1.Model.Properties.DisplayHorzLines = false;


AD Administrator Syncfusion Team February 17, 2005 11:33 AM UTC

Thanks, worked a treat..

Loader.
Up arrow icon