The hideBorderFor100PctHeight property (boolean) hides the Scheduler border when DayPilot.Scheduler.heightSpec is set to "Parent100Pct".
DayPilot.Scheduler.hideBorderFor100PctHeightfalseThe border width is forcibly set to 0 using an inline style, which overrides the CSS theme.
JavaScript
const dp = new DayPilot.Scheduler("dp", {
heightSpec: "Parent100Pct",
hideBorderFor100PctHeight: true,
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
heightSpec: "Parent100Pct",
hideBorderFor100PctHeight: true,
// ...
};React
<DayPilotScheduler
heightSpec="Parent100Pct"
hideBorderFor100PctHeight={true}
{/* ... */}
/>Vue
<DayPilotScheduler
heightSpec="Parent100Pct"
:hideBorderFor100PctHeight="true"
<!-- ... -->
/>