DayPilot.Scheduler.rowHeaderColumnBubble

The rowHeaderColumnBubble property (DayPilot.Bubble class) specifies a bubble object that will be used to display row header column title details on hover.

The args.source property stores the column definition item object from rowHeaderColumns array.

Default Value

null

Example

rowHeaderColumnBubble: new DayPilot.Bubble({
  onLoad: (args) => {
      var column = args.source;
      args.html = `Column details`;
  }
});

Related Properties