My calendar control is set up just like in the Week View demo in the Syncfusion demo app. It works well except for one requirement that the listview below the calendar stays in sync with the calendar view after swiping. I have tried to set the selected date thinking that will update the data in the list view, but that only set the selection on the calendar portion. I have also tried clearing the selection using calendar.ClearSelection(). That did clear the selection from the calendar view but had no effect on the listview.
Is there any way to modify the agenda items shown other than by tapping on the calendar?
Calendar definition -
<syncfusion:SfCalendar DataSource="{Binding CalendarInlineEvents}"
NumberOfWeeksInView="1"
InlineViewMode="Agenda"
ShowInlineEvents="True"
FirstDayofWeek="{Binding WeekStartDay}"
InlineItemTapped="calendar_InlineItemTapped"
MonthChanged="calendar_MonthChanged">