On mobile I am finding the padding on individual cells to be too large (see image below). I have tried setting the Padding property on the GridNumericColumn and by setting the CellStyle but neither effect the visual result. Can you advise on how to change the padding of DataCells please. I am using Syncfusion DataGrid on Android / IOS and UWP with SfDataGrid version 20.4.0.41/
Thanks, Martin.
<data_grid:GridNumericColumn NumberDecimalDigits="1"
HeaderText="(lts)"
MappingName="Capacity"
CellTextSize="14"
Padding="0"
TextAlignment="Center"
AllowEditing="True">
<data_grid:GridNumericColumn.CellStyle>
<Style TargetType="data_grid:GridCell">
<Setter Property="Padding"
Value="0" />
<Setter Property="Margin"
Value="0" />
</Style>
</data_grid:GridNumericColumn.CellStyle>
</data_grid:GridNumericColumn>