[ANSWERED] html – How to add default headerTooltip in ag-grid which is the same value as the data in the cell?
Solution 1 : You need to use the tooltipValueGetter property and set this in defaultColDef to params.value. defaultColDef = { tooltipValueGetter: (params) => { return params.value; } }; Demo. Problem…