Hello,
i'm using a DataTempalte with bindings to my properties to display my appointments. When the appointment is an all-day-appointment the subject is not displayed on android.
This is the AppointmentMapping:
<schedule:SfSchedule.AppointmentMapping>
<schedule:ScheduleAppointmentMapping StartTimeMapping="Start"
EndTimeMapping="End"
SubjectMapping="TitleText"
IsAllDayMapping="IsAllDay"/>
</schedule:SfSchedule.AppointmentMapping>
The DataTemplate is a simple label:
<Label FontSize="15"
TextColor="Black"
VerticalOptions="Start"
HorizontalTextAlignment="Start"
VerticalTextAlignment="Start"
Text="{Binding TitleText}" />
On iOS the TitleText is showing, on Android it is missing.
Xamarin.Forms v3.6.0.344457
Syncfusion.Xamarin.SfSchedule v17.1.0.52
Regards,
Kalle