I have a columns that are GridTemplate columns with Custom Controls and Xamarin Forms Controls (Entry, etc.). If I change the value of the Entry object, I fire an event and my SfDataGrid subscribces to this event change and attempts to Refresh the columns but fails. The columns do not resize.
The entry object itself seems like it is the same size. I'm not sure if the Entry object itself has to resize and that in turn can trigger the column resizing.
GridTemplateColumn tableColumn = new GridTemplateColumn()
{
HeaderText = tableColumnDefinition.Header,
MappingName = mappingName,
LineBreakMode = LineBreakMode.WordWrap,
TextAlignment = TextAlignment.Center,
HeaderTextAlignment = TextAlignment.Center,
ColumnSizer = ColumnSizer.Auto
};