Is it possible to disable few dates in the calendar control? for example for some booking slots already full for the particular date it should be disabled and the user can't select that? if not then what is the best way to achieve this use case?

Is it possible to disable few dates in the calendar control? for example for some booking slots already full for the particular date it should be disabled and the user can't select that? if not then what is the best way to achieve this use case?
Hi @jayeshpr
I believe, only way is to go for error handling.
you can use this formula inside onchange & onselect properties of date control
If(Self.SelectedDate in BookedSlots.Value,Notify("Slot is not available",NotificationType.Error))
Here bookedslots will be your data source.
you can also play with fill property like this
If(Self.SelectedDate in BookedSlots.Value,Gray,RGBA(255, 255, 255, 1))