hello,
I have a scheduler and I would like to add tooltip template with async pipe to get my content.
I have set this king on template like this.
getTooltip method is just an observable who is return string value
When I navigate on event inside my browser it just open tooltip with empty value.
In addition I would like to open this tooltip just on click with sticky mode could you please provide me an example? thx
here a stackbliz : https://stackblitz.com/edit/angular-schedule-tooltip-2pct31?file=app.component.ts
<ng-template #eventSettingsTooltipTemplate let-data>
<ng-container *ngIf="getTooltip(data) | async as tooltip"
><div [innerHTML]="tooltip | safeHtml">div
>ng-container>
ng-template>