New to Kendo UI for Angular? Start a free 30-day trial
CalendarSelection
Defines the Calendar selection mode behavior.
The available values are:
single
(default) - Allows selection of a single datemultiple
- Allows selection of multiple individual datesrange
- Allows selection of a date range with start and end dates
typescript
const selectionMode: CalendarSelection = 'range';
type
CalendarSelection = "single" | "multiple" | "range";