The floatingTimeHeaders property (boolean) controls whether DayPilot.Gantt uses special floating elements for long time header cells that start outside the current viewport so the cell text stays readable.
DayPilot.Gantt.floatingTimeHeaderstrueWhen enabled, the floating element displays the time header cell text for headers that start before the visible horizontal range.
JavaScript
const gantt = new DayPilot.Gantt("dp", {
floatingTimeHeaders: false,
// ...
});
gantt.init();Angular
<daypilot-gantt [config]="config"></daypilot-gantt>config: DayPilot.GanttConfig = {
floatingTimeHeaders: false,
// ...
};React
<DayPilotGantt
floatingTimeHeaders={false}
{/* ... */}
/>Vue
<DayPilotGantt
:floatingTimeHeaders="false"
<!-- ... -->
/>