React Grid 강조 표시
Ignite UI for React 행 강조 표시 모양을 구성하는 것을 지원합니다.
React Grid Highlighting Example
개요
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
다음은 React 데이터 그리드에서 행 강조 표시를 활성화하고 파란색을 적용하는 방법을 보여줍니다.
<IgrDataGrid
height="100%"
width="100%"
dataSource={this.data}
isRowHoverEnabled={true}
rowHoverBackground="#bfbfff"/>