When applying a custom style to SfDataGrid using:
<datagrid:SfDataGrid.DefaultStyle>
<datagrid:DataGridStyle GridLineStrokeThickness="1" GridLineColor="#404B58" />
</datagrid:SfDataGrid.DefaultStyle>
the grid lines appear inconsistently rendered on Android devices. Specifically, some borders appear thinner or lighter than others, even when the grid is idle (not scrolling). This issue is observed only on Android (tested on Samsung Galaxy Tab A9+, API 35, .NET 10), while iOS renders the grid lines correctly.
Expected Behavior:
- All grid lines should appear uniformly with the specified GridLineStrokeThickness and GridLineColor.
- No visual inconsistency should be present across rows or columns.
- Rendering should be consistent across platforms (Android and iOS).
Actual Behavior:
- On Android, some grid lines appear thinner or lighter than others.
- The inconsistency is visible at all times, not just during scrolling.
- iOS renders the grid lines correctly as per the defined style.