Looking to make a full background color change in ag-grid within a React application.
Experimented with row cell style, but aiming for the entire grid background change.
Here is my code snippet:
{
headerName: "Module Name",
field: "ModuleName",
sortable: true,
filter: true,
resizable: true,
cellStyle: function(params) {
return { backgroundColor: "#red" };
}
},