Hi I'd like to set a fixed minimum width to all columns of my application's sfDataGrid.
I've tried to define a global style like this in the application resource file.
<Style TargetType="Syncfusion:GridColumn" x:Key="GridSizeColumn">
<Setter Property="MinimumWidth" Value="10"></Setter>
</Style>
But it doesn't work since the xaml compiler says that MinimumWidth is not a DependencyProperty.
Have you any idea how to set this property globally for all GridColumns instead of set it manually to every column in every sfDatagrid ?