Setting default cell borders on databoundgrid

How do I set the default cell border weight on a databoundgrid to extrathin? I thought it would be through grid.tablestyle.borders.left.weight but this is read only.

1 Reply

AD Administrator Syncfusion Team August 20, 2004 02:30 PM UTC

You need to create a new object with code like grid.Tablestyle.Borders.Left = new GridBorder(GridBorderStyle.Solid, Color.Black, GridBorderWeight.ExtraThin); // or whatever you want

Loader.
Up arrow icon