ag-Grid Cell Rendering - Custom Props ag-Grid Cell Rendering - Custom Props reactjs reactjs

ag-Grid Cell Rendering - Custom Props


I know this is late. But have you tried cellRendererParams with cellRenderer?
You can set custom props for the custom cell component using it. Eg:

columnDef = [    .......    {        .......        cellRenderer: CustomCellComponent,        cellRendererParams: {            prop1: "this is prop1"        }    }]