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?