New to Kendo UI for Angular? Start a free 30-day trial
SelectionRangeEnd
Defines which end of a selection range is currently active for user interaction.
The possible values are:
start
- The start date of the range is active for selectionend
- The end date of the range is active for selectionnull
- No range end is currently active
typescript
const activeEnd: SelectionRangeEnd = 'start';
type
SelectionRangeEnd = "start" | "end" | null
;