The lineSpace property (number) specifies the vertical space between events.
Declaration
DayPilot.Month.lineSpaceDefault Value
1Examples
JavaScript
const dp = new DayPilot.Month("dp", {
lineSpace: 5,
// ...
});
dp.init();Angular
<daypilot-month [config]="config"></daypilot-month>config: DayPilot.MonthConfig = {
lineSpace: 5,
// ...
};React
<DayPilotMonth
lineSpace={5}
{/* ... */}
/>Vue
<DayPilotMonth
:lineSpace="5"
<!-- ... -->
/>See Also
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot