i have develop an ag-grid tabel and on the table header column i wanted to add an icon just beside the header name, as shown in below image
how to achieve the above functionality with ag-grid.
i have tried using menuIcon inside the column array.
const columns = [
{
autoHeight: true
sortingOrder: ["desc", "asc", null],
minWidth: 200,
width: 200,
headerComponentParams : {
// hear i have tried to use menuIcon
}
}]
but not able to place the icon there, looking for the solution how to add icon in the ag-grid header column.