Hello,
I am trying to set the color of the text in the GroupHeaderRow of my gridview.
Both the title of the group (value of the column grouped) and the text of the aggregate functions.
When I use the office black theme, everything is in black and when I use the windows 8 theme, the aggregate function text is in blue.
I use a GroupRowStyleSelector :
<cstyle:ReconReportStyle x:Key="styleGroupHeaderRow">
<cstyle:ReconReportStyle.UnmatchedStyle>
<Style TargetType="telerik:GroupHeaderRow">
<Setter Property="Background" Value="Red"/>
<Setter Property="Foreground" Value="Pink"/> <!-- this setter does not change anything-->
</Style>....
<telerik:RadGridView ...
GroupRenderMode="Flat"
GroupRowStyleSelector="{StaticResource styleGroupHeaderRow}"
</....>
What should I do ?
I am trying to set the color of the text in the GroupHeaderRow of my gridview.
Both the title of the group (value of the column grouped) and the text of the aggregate functions.
When I use the office black theme, everything is in black and when I use the windows 8 theme, the aggregate function text is in blue.
I use a GroupRowStyleSelector :
<cstyle:ReconReportStyle x:Key="styleGroupHeaderRow">
<cstyle:ReconReportStyle.UnmatchedStyle>
<Style TargetType="telerik:GroupHeaderRow">
<Setter Property="Background" Value="Red"/>
<Setter Property="Foreground" Value="Pink"/> <!-- this setter does not change anything-->
</Style>....
<telerik:RadGridView ...
GroupRenderMode="Flat"
GroupRowStyleSelector="{StaticResource styleGroupHeaderRow}"
</....>
What should I do ?