[!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
Ignite UI for Blazor 행 강조 표시 모양을 구성하는 것을 지원합니다.
Blazor Grid Highlighting Example
개요
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
다음은 Blazor 데이터 그리드에서 행 강조 표시를 활성화하고 파란색을 적용하는 방법을 보여줍니다.
<IgbDataGrid Height="100%" Width="100%"
DataSource="DataSource"
IsRowHoverEnabled="true"
RowHoverBackground="#bfbfff" />