Completed
Last Updated: 01 Jul 2019 14:52 by ADMIN
Release R3 2019 (LIB 2019.2.708)
Frank
Created on: 21 Jun 2019 08:07
Category: GanttView
Type: Bug Report
0
RadGanttView: Setting the GraphicalViewElement.TimelineStart property doesn't refresh the graphical view
Hello, 
I would like set timeline start at the same date like scheduler. 
But sometimes it don't refresh (see attachment).
What can I do?
kind regards
Frank
Attached Files:
1 comment
ADMIN
Dess | Tech Support Engineer, Principal
Posted on: 21 Jun 2019 12:27
Hello, Frank, 

In order to change the start of the timeline inside the graphical view, it is necessary to set the GanttViewElement.GraphicalViewElement.TimelineStart. However, if you change the property at run time, the view is not properly refreshed until you scroll a little bit.

I have logged it in our feedback portal by making this thread public. You can track its progress, subscribe for status changes and add your comments on the following link - feedback item.

I have also updated your Telerik points.

Currently, the possible solution that I can suggest is to invalidate RadGanttView after changing the GanttViewElement.GraphicalViewElement.TimelineStart property.

Dim count As Integer = 1
Private Sub RadButton1_Click(sender As Object, e As EventArgs) Handles RadButton1.Click
 
    Me.RadGanttView1.GanttViewElement.GraphicalViewElement.TimelineStart = DateTime.Now.AddDays(count)
    Me.RadGanttView1.GanttViewElement.GraphicalViewElement.InvalidateMeasure(true)
    Me.RadGanttView1.GanttViewElement.GraphicalViewElement.UpdateLayout()
    count = count + 1
End Sub

I hope this information helps. If you need any further assistance please don't hesitate to contact me. 

Regards,
Dess | Tech Support Engineer, Sr.
Progress Telerik
Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.
Attached Files: