The hideBorderFor100PctHeight property (boolean) hides the Gantt chart border in heightSpec = "Parent100Pct" and "Max100Pct" modes.
The border width is forcibly set to 0 using an inline style, which overrides the CSS theme.
Available since version 2021.3.5085.
DayPilot.Gantt.hideBorderFor100PctHeighttrue - hides the border in the 100% height modes.
false - keeps the border visible.
falseJavaScript
const gantt = new DayPilot.Gantt("dp", {
hideBorderFor100PctHeight: true,
// ...
});
gantt.init();Angular
<daypilot-gantt [config]="config"></daypilot-gantt>config: DayPilot.GanttConfig = {
hideBorderFor100PctHeight: true,
// ...
};React
<DayPilotGantt
hideBorderFor100PctHeight={true}
{/* ... */}
/>Vue
<DayPilotGantt
:hideBorderFor100PctHeight="true"
<!-- ... -->
/>