How to apply multiple selection colors in Xamarin.Forms DataGrid?
By default, Xamarin.Forms DataGrid applies a common background color for the selected rows. However, it also provides extensibility to have multiple selection colors when touching the rows by writing a custom SelectionController derived from GridSelectionController property. You need to override the GetSelectionColor method to apply different colors for selection in runtime.
The following code example illustrates how to set different colors for the selected rows in SfDataGrid.
<ContentPage.BindingContext>
<local:ViewModel x:Name="viewModel"/>
</ContentPage.BindingContext>
<ContentPage.Content>
<syncfusion:SfDataGrid x:Name="datagrid"
ColumnSizer="Star"
AutoGenerateColumns="True"
SelectionMode="Multiple"
ItemsSource="{Binding OrdersInfo}">
</syncfusion:SfDataGrid>
</ContentPage.Content>
public class CustomSelectionController : GridSelectionController
{
public Color[] SelectionColors { get; set; }
public CustomSelectionController(SfDataGrid datagrid)
{
this.DataGrid = datagrid;
SelectionColors = new Color[8]
{
Color.Aqua,
Color.Black,
Color.Teal,
Color.Gray,
Color.Green,
Color.Maroon,
Color.Navy,
Color.Purple
};
}
public override Color GetSelectionColor(int rowIntex, object rowData)
{
if (SelectionColors != null)
return SelectionColors[rowIntex % 8];
else
return Color.Blue;
}
Screenshot:
Sample Link:
How to apply multiple selection colors in SfDataGrid?
Conclusion
I hope you enjoyed learning about how to apply multiple selection colors in Xamarin.Forms DataGrid.
You can refer to our Xamarin.Forms 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 Xamarin.Forms 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 forums, Direct-Trac, or feedback portal. We are always happy to assist you!
This will set only the background color. How to set the foreground color for selection?