How to change the grid line color in WinRT DataGrid?
The SfDataGrid provides an option to customize the Grid line color. By default, the grid line color is shown in a Gray color. But, you can customize the grid line color by customizing style for the Cells in the SfDataGrid (GridCell, GridHeaderCell, GridCaptionSummaryCell, GridTableSummaryCell, GridHeaderIndentCell, GridIndentCell, GridStackedHeaderCellControl, GridGroupSummaryCell).
In each cell the Grid lines are drawn at Right and Bottom position only. Each cells Grid line color is based on the BorderBrush property of the Cell.
Refer to the following code example where the BorderBrush property is changed to customize the line color.
XAML
<!-- changes the grid line color for GridCell --> <Style TargetType="syncfusion:GridCell"> <Setter Property="BorderBrush" Value="Green" /> </Style> <!-- changes the grid line color for GridHeaderCell --> <Style TargetType="syncfusion:GridHeaderCellControl"> <Setter Property="BorderBrush" Value="Red" /> </Style> <!-- changes the grid line color for GridCaptionSummaryCell --> <Style TargetType="syncfusion:GridCaptionSummaryCell"> <Setter Property="BorderBrush" Value="Red"/> </Style> <!-- changes the grid line color for SfDataGrid --> <Style TargetType="syncfusion:SfDataGrid"> <Setter Property="BorderBrush" Value="Violet"/> </Style> <!-- changes the grid line color for GroupDropArea --> <Style TargetType="syncfusion:GroupDropArea"> <Setter Property="BorderBrush" Value="Violet"/> </Style> <!-- changes the grid line color for GridIndentCell --> <Style TargetType="syncfusion:GridIndentCell"> <Setter Property="BorderBrush" Value="Red"/> </Style>
Refer to the screenshot where the SfDataGrid is loaded with customized grid line color.
Refer to the following screenshot with the customized gridline color while grouping.
Sample Links: