Articles in this section
Category / Section

How to Customize Filtering and Sorting Icons in UWP DataGrid?

2 mins read

You can customize the appearance of Filter and Sort icon of SfDataGrid by override the styles of FilterToggleButton and GridHeaderCellControl. And change the appearance of filter popup by override the style of GridFilterControl using UWP DataGrid.

Customize the appearance of Sort icon

The appearance of sort indicator can be customized by override the style of GridHeaderCellControl. Under the PART_SortButtonPresenter, you can change its path value to specify expected customized appearance for both Ascending and Descending sort icons. Refer the below code, here the sort icon default color is changed from Gray to Red.

<!-- Customize the style of Sort icon -->
<Style TargetType="syncfusion:GridHeaderCellControl">
    <Setter Property="Template">
        <Setter.Value>
            <ControlTemplate TargetType="syncfusion:GridHeaderCellControl">
                <Grid>
                    . . . . 
                    . . . . 
                            <ContentPresenter HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}"
                                        VerticalAlignment="Center"
                                        FontFamily="{TemplateBinding FontFamily}"
                                        FontSize="{TemplateBinding FontSize}"
                                        FontWeight="{TemplateBinding FontWeight}" />
                            <Border x:Name="PART_FilterPopUpPresenter" />
                            <Grid x:Name="PART_SortButtonPresenter" Grid.Column="1">
                                <Grid.ColumnDefinitions>
                                    <ColumnDefinition Width="0" MinWidth="{Binding Path=SortDirection, Mode=OneWay, RelativeSource={RelativeSource TemplatedParent}, Converter={StaticResource sortDirectionToWidthConverter}}" />
                                    <ColumnDefinition Width="*" />
                                </Grid.ColumnDefinitions>
                                <Path Width="10.84"
                                Height="9.87"
                                HorizontalAlignment="Center"
                                VerticalAlignment="Center"
                                Data="F1M753.644,-13.0589L753.736,-12.9639 753.557,-12.7816 732.137,8.63641 732.137,29.7119 756.445,5.40851 764.094,-2.24384 764.275,-2.42352 771.834,5.1286 796.137,29.4372 796.137,8.36163 774.722,-13.0589 764.181,-23.5967 753.644,-13.0589z"
                                Fill="Red"
                                Stretch="Fill"
                                Visibility="{Binding Path=SortDirection,
                                                    RelativeSource={RelativeSource TemplatedParent},
                                                    ConverterParameter=Ascending,
                                                    Converter={StaticResource sortDirectionToVisibilityConverter}}">
                                    <Path.RenderTransform>
                                        <TransformGroup>
                                            <TransformGroup.Children>
                                                <RotateTransform Angle="0" />
                                                <ScaleTransform ScaleX="1" ScaleY="1" />
                                            </TransformGroup.Children>
                                        </TransformGroup>
                                    </Path.RenderTransform>
                                </Path>
 
                                <Path Width="10.84"
                                Height="9.87"
                                HorizontalAlignment="Center"
                                VerticalAlignment="Center"
                                Data="F1M181.297,177.841L181.205,177.746 181.385,177.563 202.804,156.146 202.804,135.07 178.497,159.373 170.847,167.026 170.666,167.205 163.107,159.653 138.804,135.345 138.804,156.42 160.219,177.841 170.76,188.379 181.297,177.841z"
                                Fill="Red"
                                Stretch="Fill"
                                Visibility="{Binding Path=SortDirection,
                                                    RelativeSource={RelativeSource TemplatedParent},
                                                    ConverterParameter=Decending,
                                                    Converter={StaticResource sortDirectionToVisibilityConverter}}">
                                    <Path.RenderTransform>
                                        <TransformGroup>
                                            <TransformGroup.Children>
                                                <RotateTransform Angle="0" />
                                                <ScaleTransform ScaleX="1" ScaleY="1" />
                                            </TransformGroup.Children>
                                        </TransformGroup>
                                    </Path.RenderTransform>
                                </Path>
                                <TextBlock Grid.Column="1"
                                    Margin="0,-4,0,0"
                                    VerticalAlignment="Center"
                                    FontSize="10"
                                    Foreground="{TemplateBinding Foreground}"
                                    Text="{TemplateBinding SortNumber}"
                                    Visibility="{TemplateBinding SortNumberVisibility}" />
                            </Grid>                           
                  . . . .
                  . . . . 
            </ControlTemplate>
        </Setter.Value>
    </Setter>
</Style>

 

Customize the appearance of Filter icon

The appearance of filter icon can be customized by override the FilterToggleButton style. Refer the below code, here the filter icon default color is changed from Gray to Red and the height of filter icon is changed the default value to 18.

<!-- Customize the style of Filter icon -->
<Style TargetType="syncfusion:FilterToggleButton">
    <Setter Property="Foreground" Value="Red"/>
    <Setter Property="Height" Value="18"/>
</Style>

 

The following screenshot displays the customized Filter and Sort icon of GridHeaderCellControl in SfDataGrid.

 

Customize the appearance of Filter icon

 

Customize the appearance of Filter-Popup

You can customize the appearance of filter popup by overriding the style of GridFilterControl. Under the PART_OkButton and PART_CancelButton, you can change the appearance for both buttons. Refer the below code, here the filter popup button default background color is changed from Transparent to LightBlue and Foreground color is changed from Gray to Red.

<Style TargetType="syncfusion:GridFilterControl">
    <Setter Property="Template">
        <Setter.Value>
            <ControlTemplate TargetType="syncfusion:GridFilterControl">
             . . . . 
             . . . .
                                        <StackPanel Margin="10"
                                            HorizontalAlignment="Right"
                                            Orientation="Horizontal">
                                            <Button Name="PART_OkButton"
                                            Width="100"
                                            Margin="0,0,10,0"
                                            HorizontalAlignment="Stretch"
                                            FontFamily="{TemplateBinding FontFamily}"
                                            FontSize="{TemplateBinding FontSize}"
                                            FontStretch="{TemplateBinding FontWeight}"
                                            FontStyle="{TemplateBinding FontStyle}"
                                            FontWeight="{TemplateBinding FontWeight}"
                                            Foreground="Red"
                                            Background="LightBlue"
                                            BorderBrush="#FFACACAC"
                                            Content="{Binding OK,
                                                                Source={StaticResource resourceString}}"
                                            IsEnabled="False"
                                            Style="{StaticResource OkCancelBtnStyle}"
                                            Visibility="{Binding ImmediateUpdateColumnFilter,
                                                                    RelativeSource={RelativeSource TemplatedParent},
                                                                    Converter={StaticResource ResourceKey=boolToVisiblityConverter},
                                                                    ConverterParameter=InverseVisiblity}" />
                                            <Button Name="PART_CancelButton"
                                            Width="100"
                                            Margin="10,0,0,0"
                                            HorizontalAlignment="Stretch"
                                            FontFamily="{TemplateBinding FontFamily}"
                                            FontSize="{TemplateBinding FontSize}"
                                            FontStretch="{TemplateBinding FontWeight}"
                                            FontStyle="{TemplateBinding FontStyle}"
                                            FontWeight="{TemplateBinding FontWeight}"
                                            Foreground="Red"
                                            Background="LightBlue"
                                            BorderBrush="#FFACACAC"
                                            Content="{Binding ImmediateUpdateColumnFilter,
                                                                RelativeSource={RelativeSource TemplatedParent},
                                                                Converter={StaticResource resourceNameConverter}}"
                                            Style="{StaticResource OkCancelBtnStyle}" />
                                        </StackPanel>
             . . . . 
             . . . .
 
            </ControlTemplate>
        </Setter.Value>
    </Setter>
</Style>

 

Customize the appearance of Filter-Popup

SampleCustomizeFilterandSortIcon


Conclusion

I hope you enjoyed learning on how to customize the Filtering and Sorting icons in the SfDataGrid.

You can refer to our UWP DataGrid feature tour page to know about its other groundbreaking feature representations and documentation, and how to quickly get started for configuration specifications. You can also explore our UWP DataGrid example to understand how to create and manipulate data.

For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to check out our other controls.

If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forumsDirect-Trac, or feedback portal. We are always happy to assist you!






Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please  to leave a comment
Access denied
Access denied