Product Bundles
DevCraft
All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
Web
Mobile
Document Management
Desktop
Reporting
Testing & Mocking
CMS
AI Productivity Tools
UI/UX Tools
Debugging
Free Tools
Support and Learning
Productivity and Design Tools
How can i make radGridview column header text bold programmatically?
Thanks for contacting us.
You should handle ViewCellFormatting event and set the Font property:
Font myCustomFont =
new
Font(SystemFonts.DialogFont, FontStyle.Bold);
void
radGridView1_ViewCellFormatting(
object
sender, CellFormattingEventArgs e)
{
if
(e.CellElement
is
GridHeaderCellElement)
e.CellElement.Font = myCustomFont;
}
Hope this helps.
Best wishes,