The rowReverseLines property (boolean) reverses the order of lines within each row after events have been loaded and sorted in the JavaScript Scheduler.
Available since 2025.3.6518.
Declaration
DayPilot.Scheduler.rowReverseLinesDefault Value
falseNotes
When enabled, this option not only reverses the sort order but also the line priority, placing events in the lower lines first.
To learn more about how events are placed inside rows, see JavaScript Scheduler: Event Placement Strategies.
Examples
JavaScript
const dp = new DayPilot.Scheduler("dp", {
rowReverseLines: true,
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
rowReverseLines: true,
// ...
};React
<DayPilotScheduler
rowReverseLines={true}
{/* ... */}
/>Vue
<DayPilotScheduler
:rowReverseLines="true"
<!-- ... -->
/>See Also
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot