The bubbleRow property (DayPilot.Bubble) specifies the bubble object used to show details for Gantt task row headers on hover.
Declaration
DayPilot.Gantt.bubbleRow
Default Value
new DayPilot.Bubble()
Notes
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.
Examples
JavaScript
const gantt = new DayPilot.Gantt("dp", {
bubbleRow: new DayPilot.Bubble(),
// ...
});
gantt.init();
Angular
<daypilot-gantt [config]="config"></daypilot-gantt>
config: DayPilot.GanttConfig = {
bubbleRow: new DayPilot.Bubble(),
// ...
};
React
<DayPilotGantt
bubbleRow={bubbleRow}
{/* ... */}
/>
const bubbleRow = new DayPilot.Bubble();
Vue
<DayPilotGantt :bubbleRow="bubbleRow" <!-- ... --> />
const bubbleRow = new DayPilot.Bubble();
See Also
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot