Hi Bartosz,
Thank you for contacting Syncfusion support.
Your requirement of Customizing Grid cell Font can be achieved using QueryCellStyle event in DataGrid. In that you can use FontAttribute of Style to customize the same. You can customize the row based on requirement applying condition with Grid cell,
[C#]
dataGrid.QueryCellStyle += DataGrid_QueryCellStyle;
private void DataGrid_QueryCellStyle(object sender, QueryCellStyleEventArgs e)
{
e.Style.FontAttribute = FontAttributes.Bold;
} |
But there is an issue with this property, that we have already found and fixed the issue internally from our end. This issue fix will be included in our upcoming 2019 Volume 2 main release which is expected to be available by mid of this month July 2019. We appreciate your patience until then.
Regards,
Subburaj Pandian V