The rtl property (boolean) sets the text direction of the JavaScript Scheduler component to right-to-left.
Declaration
DayPilot.Scheduler.rtlDefault Value
falseNotes
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]
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot