The bubbleTask property (DayPilot.Bubble) specifies the bubble object used to show details for Gantt task boxes on hover.
DayPilot.Gantt.bubbleTask
new DayPilot.Bubble()
The default value enables task hover bubbles using a new DayPilot.Bubble instance.
Assign another bubble object when you want to customize the details shown for task boxes.
const gantt = new DayPilot.Gantt("dp", {
bubbleTask: new DayPilot.Bubble(),
// ...
});
gantt.init();
<daypilot-gantt [config]="config"></daypilot-gantt>
config: DayPilot.GanttConfig = {
bubbleTask: new DayPilot.Bubble(),
// ...
};
<DayPilotGantt
bubbleTask={bubbleTask}
{/* ... */}
/>
const bubbleTask = new DayPilot.Bubble();
<DayPilotGantt :bubbleTask="bubbleTask" <!-- ... --> />
const bubbleTask = new DayPilot.Bubble();