Add an option for SchedulerMonthlyPrintStyle to show the text of the appointments, not only the dates.
You need to subscribe to the AppointmentElementFormatting event of SchedulerMonthlyPrintStyle and set the ShowHours property to false. Please take a look at the following example: void schedulerPrintStyleMontly_AppointmentElementFormatting(object sender, PrintAppointmentEventArgs e) { e.AppointmentElement.ShowHours = false; }