I am currently working on setting tooltips for events using Primeng's fullcalendar. Despite initializing the tooltip in the web console, I am unable to see it when hovering over an event.
My development environment includes Typescript, Primeng 7.0.5, and Angular 6. I am utilizing PrimeNg's fullcalendar v4.0 and have followed the tooltip example provided in the eventRender page.
Below is a snippet of my code:
loan.component.ts
<div id="calendar" class="row col-xl-12">
<p-fullCalendar [events]="events" [options]="options"></p-fullCalendar>
</div>
the result displayed in my console :
Tooltip {show: ƒ, hide: ƒ, dispose: ƒ, toggle: ƒ, updateTitleContent: ƒ, …} dispose: ƒ () hide: ƒ () options: {container: "body", delay: 0, html: false, placement: "top", title: "test", …} reference: a.fc-day-grid-event.fc-h-event.fc-event.fc-not-start.fc-end show: ƒ () toggle: ƒ () updateTitleContent: ƒ (title) _events: (2) [{…}, {…}] _isOpen: false _popperOptions: {} _setTooltipNodeEvent: ƒ (evt, reference, delay, options) __proto__: Object
Although the tooltip is initialized, nothing happens when I hover over an event. Has anyone encountered this issue before?