Destaque de grade React
A Ignite UI for React Data Table/Data Grid oferece suporte à configuração da aparência do destaque de linha.
React Grid Highlighting Example
Visão geral
Highlighting records in the React data can be toggled by setting the isRowHoverEnabled boolean property of the React 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 seguir, demonstramos como habilitar o destaque de linha na grade de dados React e aplicar a cor azul:
<IgrDataGrid
height="100%"
width="100%"
dataSource={this.data}
isRowHoverEnabled={true}
rowHoverBackground="#bfbfff"/>