[!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

    Overview

    Blazor 데이터의 레코드 강조 표시는 Blazor 그리드의 IsRowHoverEnabled 부울 속성을 설정하여 전환할 수 있습니다. 참고로 이는 기본적으로 활성화되어 있습니다.

    또한 RowHoverBackground 문자열 속성을 16진수 값으로 설정하여 색상을 구성할 수 있습니다.

    Code Snippet

    다음은 Blazor 데이터 그리드에서 행 강조 표시를 활성화하고 파란색을 적용하는 방법을 보여줍니다.

    <IgbDataGrid Height="100%" Width="100%"
        DataSource="DataSource"
        IsRowHoverEnabled="true"
        RowHoverBackground="#bfbfff" />
    

    API References