Hello! I have a group of events per day, which are automatically grouped. Currently the automatic grouping appears as "2 events", how could I change the text to say for example: 2 reservations?"
You can set custom HTML displayed by the group using onBeforeGroupRender event: https://api.daypilot.org/daypilot-scheduler-onbeforegrouprender/
onBeforeGroupRender: args => { args.group.html = `${args.group.count} reservations`; }
Note that the text set using args.group.html will not be HTML-encoded (see also https://doc.daypilot.org/scheduler/xss-protection/).
Thanks!!