The rectangleSelectMode property (string) determines the rectangle selection mode of the JavaScript Scheduler.
DayPilot.Scheduler.rectangleSelectMode"Free" allows free-hand selection over multiple rows.
"Row" limits the selection to a single row.
"Free"JavaScript
const dp = new DayPilot.Scheduler("dp", {
rectangleSelectMode: "Row",
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
rectangleSelectMode: "Row",
// ...
};React
<DayPilotScheduler
rectangleSelectMode="Row"
{/* ... */}
/>Vue
<DayPilotScheduler
rectangleSelectMode="Row"
<!-- ... -->
/>Rectangle Selection [doc.daypilot.org]