Hi,
I use GridTemplateColumn in SfDataGrid.
ColumnSizer property of the grid sets to Auto.
When I set HeaderText property of the column to some value ("*" on the screenshot below) column header width looks good.
But if I remove HeaderText property and set HeaderTemplate property of the column to following simple value:
<DataTemplate>
<TextBlock Text="*" />
</DataTemplate>
column header width becomes too large.
Please see screenshot:
https://dl.dropboxusercontent.com/u/36488155/GridTemplateColumnWidth.png
How I can fix column header width in case of HeaderTemplate?
Thanks,
Vladimir