Attached Image.I want to show some text on mouse hover for each icon in ag-grid. here my code. In the Action column, I am getting the result as three icons. Mouseover on each icon I want to show the type of icon.
{
headerName: 'Actions',
sortable: false,
cellRenderer: 'buttonRenderer',
cellRendererParams: {
actions: [
{
onClick: this.onViewActionClick.bind(this),
label: 'Input File',
icon: 'input',
color: 'primary',
show: this.showAction.bind(this),
},
{
onClick: this.onEditActionClick.bind(this),
label: 'Error File',
icon: 'error',
color: 'error',
show: this.showAction.bind(this),
},
{
onClick: this.onEditActionClick.bind(this),
label: 'Log File',
icon: 'view_headline',
color: 'warn',
show: this.showAction.bind(this),
},
],
},
},