Unplanned
Last Updated: 30 Mar 2018 13:09 by ADMIN
ADMIN
Hristo
Created on: 30 Mar 2018 13:02
Category: GanttView
Type: Bug Report
3
FIX. RadGanttView - the AutomaticTimelineTimeRange results in an exception when having a DayQuarterHours time range and the OnePixelTime is set
How to reproduce: 
  this.radGanttView1.GanttViewElement.GraphicalViewElement.TimelineRange = Telerik.WinControls.UI.TimeRange.DayQuarterHours;
  this.radGanttView1.GanttViewElement.GraphicalViewElement.AutomaticTimelineTimeRange = true;
  this.radGanttView1.GanttViewElement.GraphicalViewElement.OnePixelTime = new TimeSpan(0, 0, 15);

Workaround: at the moment the Gantt control does not support an automatic timeline range for day quarter hours. The TimeRange.DayQuarterHours is similar to the half days and they should be handled the same way when in automatic timeline. If possible TimeRange.DayHalfHours 
this.radGanttView1.GanttViewElement.GraphicalViewElement.TimelineRange = Telerik.WinControls.UI.TimeRange.DayHalfHours;
0 comments