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