[!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
개요
Blazor 데이터에서 레코드를 강조하는 것은 Blazor 그리드의 불리언 속성을 설정IsRowHoverEnabled 하여 전환할 수 있습니다. 참고로, 이 기능은 기본적으로 활성화되어 있습니다.
또한, 색상은 문자열 속성을 16진수 값으로 설정RowHoverBackground 하여 구성할 수 있습니다.
Code Snippet
다음은 Blazor 데이터 그리드에서 행 강조 표시를 활성화하고 파란색을 적용하는 방법을 보여줍니다.
<IgbDataGrid Height="100%" Width="100%"
DataSource="DataSource"
IsRowHoverEnabled="true"
RowHoverBackground="#bfbfff" />