Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
4040
Xamgrid - Font size for all components
posted

Hi,

We need to change font size for a XamGrid (Silverlight).

This mean for all components of a grid : cells, headers, GroupByArea, GroupColumn headers, footers, etc...

As explain by other people, changing it at grid level has no effect.

We already look many posts and we can do it for cells and headers :

<ig:XamGrid.CellStyle>
          <Style TargetType="ig:CellControl">
                    <Setter Property="FontSize" Value="10" />
          </Style>
</ig:XamGrid.CellStyle>
<ig:XamGrid.HeaderStyle>
          <Style TargetType="igPrim:HeaderCellControl">
                    <Setter Property="FontSize" Value="10" />
          </Style>                    
</ig:XamGrid.HeaderStyle>

But we cannot find how to do it for GroupColumn headers, GroupByArea, footers.

Is there a way to do it for these elements ?

Or better, a way to to it for all the grid at once (would be a great feature) ?

Thanks.

Alain.