Is it possible to remove the black border around the selected cell in DataGrid control ?

I believe the only solution is to override the DataCell Style, as the border is hardcoded in the template. My approach has always been using this style in DataGrid > CellStyle
<Style
BasedOn="{StaticResource MaterialDesignDataGridCell}"
TargetType="{x:Type DataGridCell}">
<Style.Triggers>
<Trigger Property="IsKeyboardFocusWithin" Value="True">
<Setter Property="BorderBrush" Value="Transparent" />
</Trigger>
</Style.Triggers>
</Style>
Hope this helps.
Most helpful comment
I believe the only solution is to override the DataCell Style, as the border is hardcoded in the template. My approach has always been using this style in
DataGrid>CellStyleHope this helps.