DayPilot.Scheduler.hideBorderFor100PctHeight

The hideBorderFor100PctHeight property (boolean) hides the Scheduler border when DayPilot.Scheduler.heightSpec is set to "Parent100Pct".

Declaration

DayPilot.Scheduler.hideBorderFor100PctHeight

Default Value

false

Notes

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

DayPilot.Scheduler.heightSpec

DayPilot.Scheduler Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript