Reputation: 43
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.
I want it looks like this
Upvotes: 4
Views: 1893
Reputation: 81370
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;
}
Upvotes: 2