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
170
Column Header Font Size
posted

How can I change the Font Family and Size of Columns Header??

Parents
  • 6912
    Verified Answer
    posted

    Hi,

    You can try this snippet:

    xmlns:igPrim="http://schemas.infragistics.com/xaml/primitives"
    ...
    <ig:XamGrid x:Name="XGrid">
        <ig:XamGrid.HeaderStyle>
            <Style TargetType="igPrim:HeaderCellControl">
                <Setter Property="FontSize"
                        Value="16" />
            </Style>
        </ig:XamGrid.HeaderStyle>
    ...

    HTH

Reply Children
No Data