How to improve performance when using formatting and styling for the cells based on data?
In SfDataGrid, you can customize the Cell/Row style based on the data in the following three ways,
- StyleSelector
- DataTriggers
- Customizing property in Style using Converters
StyleSelector
You can customize the Cell/Row based on content by using CellStyleSelector/ RowStyleSelector, but it affects the performance while styling more number of columns or rows. Therefore, this is not a recommended way for styling the SfDataGrid for more number of columns or rows. You can use this StyleSelector according to your necessity.
To know more about the StyleSelector you can refer to the following links:
DataTriggers
You can customize the Cell/Row based on content by using Style.Triggers, but compared to Binding Converter, the performance is low when styling more number of columns or rows in SfDataGrid.
To know more about the DataTriggers you can refer to the following links:
Customizing the properties in Style using Converters
In SfDataGrid, customizing properties in Style using Converter is the suggested way to customize the properties of Cell/Row, based on its content. As it provides improved performance compared to other two ways.
For Cell Style
In the following code example, the Background of the GridCell for a particular column is customized based on its content using Converters.
XAML
<Window.Resources> <local:CellStyleConverter x:Key="cellstyleconverter"/> </Window.Resources> <!--Defining SfDataGrid--> <syncfusion:SfDataGrid x:Name="datagrid" ItemsSource="{Binding GDCSource}" AutoGenerateColumns="True" ColumnSizer="Star"/> <!--Setting GridCell key to SfDataGrid.Columns--> <syncfusion:SfDataGrid.Columns> <syncfusion:GridTextColumn MappingName="EmployeeDesignation"> <syncfusion:GridTextColumn.CellStyle> <Style TargetType="syncfusion:GridCell"> <Setter Property="Background" Value="{Binding EmployeeDesignation, Converter = {StaticResource cellstyleconverter}}" /> </Style> </syncfusion:GridTextColumn.CellStyle> </syncfusion:GridTextColumn> </syncfusion:SfDataGrid.Columns>
The following code example illustrates the CellStyleConverter for customizing the Cell style based on the Cell content.
C#
class CellStyleConverter:IValueConverter { object IValueConverter.Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture) { var cellvalue = value as string; if (cellvalue == "SoftwareEngineer") return "CadetBlue"; else if (cellvalue == "SalesRepresentative") return "OrangeRed"; else return "YellowGreen"; } object IValueConverter.ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture) { throw new NotImplementedException(); } }
The following screenshot displays the output of CellStyle in SfDataGrid.
Figure 1: CellStyle in SfDataGrid
For Row Style
In the following code example, the Background of the VirtualizingCellsControl is customized based on its content using Converters.
XAML
<!--Customizing VirtualizingCellsControl --> <Window.Resources> <local:RowStyleConverter x:Key="rowstyleconverter"/> <Style x:Key="stylecolor" TargetType="syncfusion:VirtualizingCellsControl"> <Setter Property="Background" Value="{Binding Converter={StaticResource rowstyleconverter}}"/> </Style> </Window.Resources> <!--Setting VirtualizingCellsControl key to RowStyle in SfDataGrid --> <syncfusion:SfDataGrid x:Name="datagrid" RowStyle="{StaticResource stylecolor}" ItemsSource="{Binding GDCSource}" AutoGenerateColumns="True" ColumnSizer="Star"/>
The following code example illustrates the RowStyleConverter for customizing the Cell/Row style.
C#
class RowStyleConverter:IValueConverter { object IValueConverter.Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture) { if ((value as BusinessObjects).EmployeeSalary==null) return "CadetBlue"; else if((value as BusinessObjects).EmployeeName==null) return " OrangeRed "; else return " YellowGreen "; } object IValueConverter.ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture) { throw new NotImplementedException(); } }
The following screenshot displays the output of RowStyle in SfDataGrid.
Figure 2: RowStyle in SfDataGrid
Sample Link:
Refer to the following sample links to customize the GridCell, based on the Converter to increase the performance of the SfDataGrid in WPF and Silverlight.
WPF: StylePerformanceofSfDataGrid_WPF
Silverlight: StylePerformanceofSfDataGrid_SilverLight