.ag-row-hover { /* putting in !important so it overrides the theme's styling as it hovers the row also */ background-color: #dfdfff !important; }
.ag-row-hover { /* putting in !important so it overrides the theme's styling as it hovers the row also */ background-color: #dfdfff !important; } .ag-column-hover { background-color: #dfffdf; }
aggrid에서 마우스를 올려두면 색깔이 변하게 하는 옵션.
또한 글자의 색깔을 바꾸고 싶다면
{
headerName: "평균",
field: "nmeanct",
flex: 1,
valueFormatter: twoFormatter,
cellStyle: {
color: "rgb(110,120,55)",
},
},
이런식으로 columnDefs를 보낼 때 cellStyle에 color를 설정해서 보내주면 된다.
'■ Web개발 > Ag-grid' 카테고리의 다른 글
aggrid 인쇄 print() 하면 좌우가 늘어나서 짤릴 경우 (0) | 2024.08.29 |
---|---|
Ag-grid 사용하는 법. (0) | 2021.10.05 |
ag-grid 에서 AgGridColumn에 반올림 값 적용시키기 (0) | 2021.05.27 |