The hideBorderFor100PctHeight property (boolean) hides the Scheduler border when DayPilot.Scheduler.heightSpec is set to "Parent100Pct".
Declaration
DayPilot.Scheduler.hideBorderFor100PctHeightDefault Value
falseNotes
The border width is forcibly set to 0 using an inline style, which overrides the CSS theme.
Examples
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"
<!-- ... -->
/>See Also
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot