Hello, Stephen,
To work around this issue you can set the text of the DateLabelElement as shown below:
this.radScheduler1.ActiveViewType = SchedulerViewType.Timeline;
SchedulerTimelineView timelineView = this.radScheduler1.GetTimelineView();
SchedulerTimescale currentScaling = timelineView.GetScaling();
currentScaling.DisplayedCellsCount = 30;
var startDate = this.radScheduler1.ActiveView.StartDate.Date;
var endDate = this.radScheduler1.ActiveView.EndDate.Date;
this.radSchedulerNavigator1.DateLabelElement.Text = String.Format("{0} - {1}", startDate.ToString("yyyy/MM/dd"), endDate.ToString("yyyy/MM/dd"));
I hope this helps.
Regards,
Nadya
Progress Telerik
Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.