Javascript – How to define a column to be the sum of two columns? i.e. a computed or expression field
I would like to include in my grid an extra column to reflect the up to date sum of two other columns: const columnDef = [ {headerName: 'x', field: 'x', type: 'numericColumn'}, {headerName: 'y', field: 'y', type: 'numericColumn'}, {headerName: 'z',…