DayPilot.Scheduler.rtl

The rtl property (boolean) sets the text direction of the JavaScript Scheduler component to right-to-left.

Declaration

DayPilot.Scheduler.rtl

Default Value

false

Notes

Set this property to true when the Scheduler UI should follow an RTL layout.

Available since 2026.2.yyyy.

Examples

JavaScript

const scheduler = new DayPilot.Scheduler("scheduler", {
  rtl: true,
  // ...
});
scheduler.init();

Angular

<daypilot-scheduler [config]="config"></daypilot-scheduler>
config: DayPilot.SchedulerConfig = {
  rtl: true,
  // ...
};

React

<DayPilotScheduler
  rtl={true}
  {/* ... */}
/>

Vue

<DayPilotScheduler
  :rtl="true"
  <!-- ... -->
/>

See Also

RTL [doc.daypilot.org]

DayPilot.Scheduler Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript