We are using Telerik WPF controls (2013 Q3 NET) in our desktop application.
There is a requirement for a vertically aligned text in the column headers and also a filter row. (I have attached the picture to this post)
I have tried the following code:
<telerik:RadGridView x:Name="trgv"
FilteringMode="FilterRow"
IsFilteringAllowed="True">
<telerik:RadGridView.Resources>
<Style TargetType="telerik:GridViewHeaderCell">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="telerik:GridViewHeaderCell">
<ContentPresenter>
<ContentPresenter.LayoutTransform>
<RotateTransform Angle="270" />
</ContentPresenter.LayoutTransform>
</ContentPresenter>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</telerik:RadGridView.Resources>
</telerik:RadGridView>
but when the grid is displayed, the header text spans both header and filter row, and filters do not show up at all.
Can someone help with this issue?
Thank you.
There is a requirement for a vertically aligned text in the column headers and also a filter row. (I have attached the picture to this post)
I have tried the following code:
<telerik:RadGridView x:Name="trgv"
FilteringMode="FilterRow"
IsFilteringAllowed="True">
<telerik:RadGridView.Resources>
<Style TargetType="telerik:GridViewHeaderCell">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="telerik:GridViewHeaderCell">
<ContentPresenter>
<ContentPresenter.LayoutTransform>
<RotateTransform Angle="270" />
</ContentPresenter.LayoutTransform>
</ContentPresenter>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</telerik:RadGridView.Resources>
</telerik:RadGridView>
but when the grid is displayed, the header text spans both header and filter row, and filters do not show up at all.
Can someone help with this issue?
Thank you.