Hi Dan,
I appreciate the update.
I’ll look into reproducing the issue and will post as soon as I manage to figure out what’s causing it.
In the meantime, if you would like, I can provide some insight into how I’m setting up the calendar as well as any surrounding details that may be relevant to the issue at hand.
For starters, here is how I have it set up in my react application:
<DayPilotCalendar
ref={calendarRef}
headerDateFormat={calendarViewPortConfig.headerDateFormat}
viewType={viewType === "Biweek" || viewType === "Month Calendar" ? "Days" : viewType as "Week" | "Day"}
visible={viewType !== "Month"}
days={viewType === "Biweek" ? 14 : 30}
startDate={startDate}
heightSpec='BusinessHoursNoScroll'
businessBeginsHour={businessBeginsHour}
businessEndsHour={businessEndsHour}
timeFormat="Clock24Hours"
// useEventBoxes={"Never"}
// snapToGrid={true}
events={events}
timeRangeSelectedHandling="Enabled" onTimeRangeSelected={handleTimeRangeSelected}
eventClickHandling="Enabled" onEventClick={handleEventClick}
eventResizeHandling="Update" onEventResize={handleEventResize}
eventMoveHandling="Disabled" onEventMove={handleEventMove}
eventDeleteHandling='Update' onEventDelete={handleEventDelete}
onBeforeEventRender={handleBeforeEventRender}
onBeforeCellRender={(args: DayPilot.CalendarBeforeCellRenderArgs) => defineWeekendDays(args)}
cellHeight={30}
hourWidth={50}
durationBarVisible={false}
theme="calendar_default"
locale={locale}
/>