-
I am overwriting the column icon in the data grid. I'm not using one of the ignite ones, I'm using my own SVG. The problem is that when I put the cursor over the icon a tooltip appears and I don't want it to appear. In the following image you can see it: To load the icon I do this: And to use it this: How can I remove that tooltip and not show it as in the rest of the icons? I'm using -> "@infragistics/igniteui-angular": "^12.3.27", |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Go ahead and add the fourth parameter |
Beta Was this translation helpful? Give feedback.
Go ahead and add the fourth parameter
stripMeta
when calling addSvgIcon. This will remote thetitle
attribute from the svg element.Stackblitz example