telerik radscheduler Appointments don't update with ruler change

799 Views Asked by At

In my application I want to give the user the ability to see that start and end date of the radscheduler control.

I found I can do this using the following code

RulerPrimitive ruler = (this.scheduler.SchedulerElement.ViewElement as SchedulerDayViewElement).DataAreaElement.Ruler;
ruler.StartScale = 5
ruler.EndScale = 9

After I add the code, the ruler will adjust but the appointments start and end times will no longer align with the appropriate time on the ruler. The telerik docs don't mention anything else that need to get called, so I am wondering what I am missing?

1

There are 1 best solutions below

0
On

It seems like you need the exact time rendering functionality of the Telerik UI for WinForms RadScheduler. Here is how to turn it on:

radScheduler1.EnableExactTimeRendering = true;