Welcome to the .NET MAUI feedback portal. We’re happy you’re here! If you have feedback on how to improve the .NET MAUI, we’d love to hear it!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

0
Votes

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.