Completed
Last Updated: 27 Apr 2018 15:45 by Dimitar
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 30 Aug 2017 08:04
Category: GanttView
Type: Bug Report
1
FIX. RadGanttView - when the ReadOnly property is set to true, RadGanttView shouldn't show the circles at both ends of the tasks
Workaround: handle the RadGanttView.GraphicalViewItemFormatting event:

    Private Sub GraphicalViewItemFormatting(sender As Object, e As GanttViewGraphicalViewItemFormattingEventArgs)
        Dim taskItem As GanttViewTaskItemElement = TryCast(e.ItemElement, GanttViewTaskItemElement)
        If taskItem IsNot Nothing Then
            taskItem.LeftLinkHandleElement.Opacity = 0
            taskItem.RightLinkHandleElement.Opacity = 0
        End If 
    End Sub
Attached Files:
0 comments