DayPilot.Gantt.bubbleRow

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

DayPilot.Bubble Class

DayPilot.Gantt.bubbleCell

DayPilot.Gantt.bubbleTask

DayPilot.Gantt Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript