New to Kendo UI for Angular? Start a free 30-day trial
SelectionRange
Defines the structure for a Calendar date selection range.
This interface represents a date range with a start and end date, commonly used in range selection scenarios.
typescript
const range: SelectionRange = {
start: new Date(2023, 0, 1),
end: new Date(2023, 0, 31)
};