Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ag-grid rowgroup row color for the entire row

I have ag-grid-enterprise which has rowGroup enabled,

I want to color the full row when there is a rowgroup created.

Can anyone help me on this.

enter image description here

I want it looks like this

enter image description here

like image 725
RONIT MAITY Avatar asked Sep 18 '25 00:09

RONIT MAITY


1 Answers

You can achieve that using pure css. In your styling file

.ag-row-group.ag-row-level-0 {
  background-color: #f0ffff;
}

.ag-row-group.ag-row-level-1 {
  background-color: #faebd7;
}

Live Demo

Edit Row Group Full Row Color

like image 104
NearHuscarl Avatar answered Sep 23 '25 14:09

NearHuscarl