Completed
Last Updated: 03 Jun 2015 13:22 by ADMIN
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 08 May 2015 12:41
Category: Scheduler/Reminder
Type: Bug Report
0
FIX. RadScheduler - appointment spanning over two days is not completely rendered when the EnableExactTimeRendering property is set to true and the RulerStartScale is changed
To reproduce:
Appointment app = new Appointment(DateTime.Today.AddHours(18), TimeSpan.FromHours(10), "Test");  
this.radScheduler1.Appointments.Add(app);

SchedulerDayView dayView = this.radScheduler1.GetDayView();
dayView.RulerStartScale = 1;
dayView.RulerEndScale = 24;
dayView.DayCount = 2; 
this.radScheduler1.EnableExactTimeRendering = true;
Attached Files:
0 comments