DayPilot.Scheduler.rowReverseLines

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.rowReverseLines

Default Value

false

Notes

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

DayPilot.Scheduler Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript