The SelectedDateStart needs to be bound to a date value set by another DatePicker. Can I get an example of binding the date in a string in C# to the xaml datePicker SelectedDateStart Property? This is what i have so far for the xaml
<telerik:RadDatePicker IsInputRestrictedToSelectableDates="True" 
                                       SelectableDateStart="{Binding Path=SetDepartureStartDate,Mode=TwoWay}"
                                       SelectedDate="{Binding Path=ActualDepartureDateLocal, Mode=TwoWay}"  
                                       IsEnabled="{Binding Path=IsActualDepartureDateTimeEditable}" 
                                       TabIndex="7" >
                </telerik:RadDatePicker>
				
                        
Figured it out!
Used a bind and path that is on the date picker below.
The bind path was then connnected to a DateTime in my cs file. The issue I was having is that the binding wasn't connected to my DataContext for teh cs file and wasn't returning a DateTime but a string. Switched these and it worked!