Default event length

How do you set the default length of an event / appointment? When I double click the calendar the period is set for one hour. I’d like to set it for 15 min.

Hi @Tim_Kramer,

We do not have an option for this, but I can recommend you a solution. In onEventCreate event you can set the end time for the event. For example:

if (args.action === 'click') {
      args.event.end = new Date(args.event.start + 15 * 60 * 1000);
      console.log(args.event.end);
}