Hi Kris,
Thank you for contacting Syncfusion support.
Your requirement of changing the appointment text size can be achieved using TextStyle property of AppointmentStyle in Schedule Xamarin Forms. Since TextSize property has been deprecated, please use TextStyle property of AppointmentStyle instead. Please refer the below code example,
[c#]
AppointmentStyle appointmentStyle = new AppointmentStyle(); appointmentStyle.TextStyle = Font.SystemFontOfSize(50); schedule.AppointmentStyle = appointmentStyle;
|
Please let us know, if you have any query.
Regards.
Subburaj Pandian V