RadScheduler supports modification of RulerStartScale and RulerEndScale. But if you display more than one day in the current day view, all days will have the same time frame as they share one common time ruler. In case of one day per view, you can handle navigation to next/previous day and modify the ruler as you wish:
public Form1()
{
InitializeComponent();
Random rand = new Random();
for (int i = 0; i < 15; i++)
{
Appointment appointment = new Appointment(DateTime.Now.AddDays(i), TimeSpan.FromMinutes(30), "Summary", "Description");
Currently, the RulerStartScale and RulerEndScale properties can only be set to a whole hour. This behavior cannot be worked around because the internal implementation of RadScheduler relies on the fact that the RulerStartScale and RulerEndScale are whole hours. The best behavior you can achieve is to set these properties with the closest whole hour so that all the work-time cells are visible. However, here is the feature request for the option to set minutes to the RulerStartScale and RulerEndScale properties
I hope this information helps. Should you have further questions, I would be glad to help.
Regards,
Desislava
Telerik
TRY TELERIK'S NEWEST PRODUCT - EQATEC APPLICATION ANALYTICS for WINFORMS.
Learn what features your users use (or don't use) in your application. Know your audience. Target it better. Develop wisely. Sign up for Free application insights >>