[!Note] Please note that this control has been deprecated and replaced with the Grid component, and as such, we recommend migrating to that control. This will not be receiving any new features, bug fixes will be deprioritized. For help or questions on migrating your codebase to the Data Grid, please contact support.
Blazor Grid Highlighting
La tabla de datos Ignite UI for Blazor / cuadrícula de datos admite la configuración de la apariencia del resaltado de filas.
Blazor Grid Highlighting Example
Descripción general
Highlighting records in the Blazor data can be toggled by setting the IsRowHoverEnabled boolean property of the Blazor grid. Note, this is enabled by default.
In addition, the color is configurable by setting the RowHoverBackground string property to a hex value.
Code Snippet
A continuación se muestra cómo habilitar el resaltado de filas en la cuadrícula de datos de Blazor y se aplica el color azul:
<IgbDataGrid Height="100%" Width="100%"
DataSource="DataSource"
IsRowHoverEnabled="true"
RowHoverBackground="#bfbfff" />