Javascript – Changing cell format in ag-grid/react
I am displaying numbers in my cells and for the colDefs, I only want to show them to 2dp. So within my colDefs I have this - valueFormatter: (params: ValueFormatterParams) => params.value?.price?.toFixed(2) I would like to add the ability for…