Here is the difference in the examples between the desktop PC and the IPad attached in the 2 files. As you can see the appointment is showing as a small square on the IPad.
The below is the RadScheduler.
<telerik:RadScheduler ID="CalendarViewRS" runat="server" SelectedView="MonthView" DataDescriptionField="Details"
DataEndField="MeetingFinish" DataKeyField="MeetingID" DataSourceID="MeetingsDS" DataStartField="MeetingStart"
DataSubjectField="MeetingType" AllowDelete="False" Width="100%" AllowInsert="False" Height="575px" Culture="en-AU"
OnAppointmentClick="CalendarViewRS_AppointmentClick" OnAppointmentContextMenuItemClicking="CalendarViewRS_AppointmentContextMenuItemClicking" OnFormCreating="CalendarViewRS_FormCreating">
<AppointmentContextMenus>
<telerik:RadSchedulerContextMenu runat="server" ID="SchedulerAppointmentContextMenu">
<Items>
<telerik:RadMenuItem Text="Edit Meeting Details">
</telerik:RadMenuItem>
<telerik:RadMenuItem Text="Edit Agenda">
</telerik:RadMenuItem>
<telerik:RadMenuItem Text="Print Agenda">
</telerik:RadMenuItem>
<telerik:RadMenuItem Text="Conduct Meeting">
</telerik:RadMenuItem>
<telerik:RadMenuItem Text="Print Minutes">
</telerik:RadMenuItem>
</Items>
</telerik:RadSchedulerContextMenu>
</AppointmentContextMenus>
</telerik:RadScheduler>
How do I make my appointments look like they look on the desktop?