Is there any way to create a tooltip so that when the grid toolbar is enabled, the column hiding and column pinning buttons can show a tooltip when the mouse hover overs the button? I'm looking to label those buttons with what it does (e.g Column Pinning), so when the user hovers over it, the user can see what the button does.
If not, would it be implemented in future versions?
I am glad that you have resolved your issue.
Thank you for using Infragistics components.
Thanks for this solution!
The final solution for me was:
```
Hello,
Thank you for posting in our community.
To display a tooltip over each of the buttons you can use the title attribute. You can set it for both of the buttons, inside the AfterViewInit hook:
public ngAfterViewInit() { this.grid.toolbar.columnHidingButton.element.nativeElement.title = "Column Hiding"; this.grid.toolbar.columnPinningButton.element.nativeElement.title = "Column Pinning"; }