Tooltip for major events

enter image description here Below is the graph I created in Angular2. I can add events to the calendar. I added events for several days, left and right arrows.

I'm looking for a mousehover hint for events and days. This function is available.

  <p-schedule [events]="events" [eventLimit] ="3" (onViewRender)="loadEvents($event)" (onEventClick)="handleEventClick($event)" 
    (onDayClick)="handleDayClick($event)" ></p-schedule>

      

+3


source to share


1 answer


No direct selection of tooltip in fullcalendar. But you can use external libraries. Fullcalendar offers qtip2 in its documentation . There is an example for you with fullcalendar and qtip2.



jsfiddle.net/N78hs/1649/

      

+1


source







All Articles