I'm trying to access the CellTapped event in the SfSchedule control but it only gets invoked when clicked on the Date of the month and not when clicked on the Appointment
<syncfusion:SfSchedule x:Name="schedule" ScheduleView="MonthView" DataSource="{Binding appointmentCollection}">
<syncfusion:SfSchedule.MonthViewSettings>
<syncfusion:MonthViewSettings ShowAgendaView="true" />
</syncfusion:SfSchedule.MonthViewSettings>
<syncfusion:SfSchedule.Behaviors>
<behaviors:EventToCommandBehavior EventName="CellTapped"
Command="{Binding AppointmentSelectedCommand}"/>
</syncfusion:SfSchedule.Behaviors>
</syncfusion:SfSchedule>