You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in the tooltip.component.ts file just add window.scrollY inside the options object for y property
let options:ContentOptions = {
content : this.content,
cls : this.ngToolTipClass,
x : event.clientX,
y: event.clientY + window.scrollY,
offset : this.tooltipDisplayOffset
};
this will position the tooltip based on the cursor even if you scroll the page.
Hello,
is there a way to choose where the tooltip is positioned ?
I'd like it to be above the mouse.
Thank you very much.
The text was updated successfully, but these errors were encountered: