Bold Font?

I am using the virtual grid and when my app starts up all the column header look good (not bold) but as soon as I click on them or feed the grid data virtually the font of the columns tuns bold? Huh?? I want them NOT to be bold ever.. I tried, gridControl1.BaseStylesMap["Standard"].StyleInfo.Font.Bold = false; but this is a no go. Other ideas? Thanks...

1 Reply

AD Administrator Syncfusion Team March 8, 2004 02:53 PM UTC

The default behavior for a GridControl is for the column headers to be bold. Try turning the bold off by setting gridControl1.BaseStylesMap["Column Header"].StyleInfo.Font.Bold = false You might also check your QueryCellInfo to see if you are providing any style values when e.RowIndex == 0. If so, make sure you are not setting Bold there. And check your SaveCellInfo to make sure you are not saving ing bold fonts when e.RowIndex == 0.

Loader.
Up arrow icon