search envelope-o feed check
Home Unanswered Active Tags New Question
user comment-o

Scheduler - Add text at the bottom of a day

Asked by Anonymous
1 year ago.

Is it possible to add a static text resp. a label at the end of the day as shown in the attached screenshot?

Answer posted by Dan Letecky [DayPilot]
1 year ago.

Yes, you can add it using onBeforeCellRender. Try something like this:

onBeforeCellRender: args => {
  args.cell.areas = [
    { 
      left: 0,
      right: 0,
      bottom: 0,
      text: "Start"
    }
  ];
}

This question is more than 1 months old and has been closed. Please create a new question if you have anything to add.