[!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.
Resaltado de cuadrícula Web Components
La Ignite UI for Web Components admite la configuración de la apariencia del resaltado de filas.
Web Components Grid Highlighting Example
Descripción general
El resaltado de registros en los datos Web Components se puede alternar configurando la propiedad booleana isRowHoverEnabled
de la cuadrícula Web Components. Tenga en cuenta que esto está habilitado de forma predeterminada.
Además, el color se puede configurar estableciendo la propiedad de cadena rowHoverBackground
en un valor hexadecimal.
Code Snippet
A continuación se muestra cómo habilitar el resaltado de filas en la cuadrícula de datos Web Components y se aplica el color azul:
<igc-data-grid id="grid"
height="100%"
width="100%"
is-row-hover-enabled="true"
row-hover-background="#bfbfff">
</igc-data-grid>