Hi Tasha,
Thanks for your reply!
To clarify:
MyComponent is a wrapper around the GanttForm component, which uses wx-react-gantt.
The .gantt-container class is defined in my App.css and applied to the container wrapping the <Gantt /> component (see snippet below).
By “calendar”, I’m referring to the Gantt chart timeline area — the horizontal bar showing tasks over time (not a typical date picker or FullCalendar).
Despite applying overflow-x: auto, the horizontal scrollbar does not appear, even when the content clearly overflows its container.
This causes a usability issue:
👉 I cannot reach tasks that are positioned far on the right side of the timeline, since there is no way to scroll horizontally.
I’ve attached a screenshot below showing the overflowing Gantt area — notice that the content goes beyond the visible region, but no scrollbar is shown:

Here’s a simplified code snippet of how it’s embedded:
<div style={{ position: "relative", width: "100%", height: "100%" }}>
<div style={{ position: "absolute", top: 0, left: 0, right: 0, bottom: 0, overflow: "auto" }}>
<div className="gantt-container">
<Gantt
init={init}
tasks={tasks}
links={links}
scales={scales}
zoom={zoom}
columns={columns}
/>
</div>
</div>
</div>
Let me know if I'm missing something, or if there’s a recommended way to enable horizontal scrolling properly.
Best regards,
SonaBIMSandroDASILVA