본문 바로가기

■ Web개발/Ag-grid

ag-grid 가로 세로 색칠 column, row 색깔 변경

.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를 설정해서 보내주면 된다.