
We have a grid with several properties. Length of each "Display name" is different: there are short names like "Step" and long names like "Upper alignment style". I want the "Display name" column (property name column) to auto-size according to the longest property name in the grid.
Currently I tried two options:
1. specify LabelColumnWidth to Auto, but this gives row-based auto-sizing, but I want that that all rows have the same width (looks like a single column)
2. not specify anything, the width is set to ~200px that's too long for me
Can you please suggest a proper way to have auto-sized width for the whole column?
Thank you!

<telerik:RadTileView DockPanel.Dock="Top" ItemsSource="{Binding Phases}" ScrollViewer.HorizontalScrollBarVisibility="Disabled" SelectionMode="Single" ColumnWidth="*" ColumnsCount="1" IsAutoScrollingEnabled="True" IsSynchronizedWithCurrentItem="True" IsSelectionEnabled="True" MaximizeMode="Zero" RowHeight="Auto" telerik:TileViewPanel.IsRowsShrinkEnabled="True" telerik:StyleManager.Theme="Expression_Dark"> <telerik:RadTileView.ContentTemplate> <DataTemplate> <Grid Margin="6"> <Grid.ColumnDefinitions> <ColumnDefinition Width="*" /> <ColumnDefinition Width="Auto" /> </Grid.ColumnDefinitions> <ContentControl Grid.Column="0" HorizontalAlignment="Stretch" Content="{Binding}" > <ContentControl.Style> <Style TargetType="{x:Type ContentControl}"> <Setter Property="ContentTemplate" Value="{StaticResource PhaseTemplate}" /> <Style.Triggers> <DataTrigger Binding="{Binding IsChecked, ElementName=EditButton}" Value="True"> <Setter Property="ContentTemplate" Value="{StaticResource PhaseEditTemplate}" /> </DataTrigger> </Style.Triggers> </Style> </ContentControl.Style> </ContentControl> <ToggleButton x:Name="EditButton" Margin="6,0,6,0" Grid.Column="1" Style="{StaticResource EditToggleButton}" HorizontalAlignment="Right" VerticalAlignment="Top" /> </Grid> </DataTemplate> </telerik:RadTileView.ContentTemplate></telerik:RadTileView><telerik:RadGridView FilteringMode="FilterRow"> as explained in the docu herehttp://www.telerik.com/help/wpf/gridview-filtering-howto-configure-the-filtering-mode.html however it is not available on the control