The bubbleCell property (DayPilot.Bubble) specifies the bubble object used to show details for Gantt grid cells on hover.
DayPilot.Gantt.bubbleCell
null
Assign a DayPilot.Bubble instance to show or customize details when the user hovers over a Gantt grid cell.
const gantt = new DayPilot.Gantt("dp", {
bubbleCell: new DayPilot.Bubble(),
// ...
});
gantt.init();
<daypilot-gantt [config]="config"></daypilot-gantt>
config: DayPilot.GanttConfig = {
bubbleCell: new DayPilot.Bubble(),
// ...
};
<DayPilotGantt
bubbleCell={bubbleCell}
{/* ... */}
/>
const bubbleCell = new DayPilot.Bubble();
<DayPilotGantt :bubbleCell="bubbleCell" <!-- ... --> />
const bubbleCell = new DayPilot.Bubble();