Hello,
I want to show some tasks in my ultraGanttView by displaying an image. This works by assigning a iamge to oTask.TimeLineSettings.BarSettings.StartIndicatorAppearance.Image.
No I want to use an ImageList. In documentation I found that I can assign an index into the imagelist's collection. But I did not find where to assign the collection!
So, where do I assign the collection that should be used?
Thank you for help.
Jörg
Hello Jorg,
Has your issue been resolved, or can I be of further assistance?
The StartIndicator can only appear at the beginning of a TimeSlotInterval. If you have your PrimaryInterval set to 1 Day, then the StartIndicator can only appear at the beginning of each day. If you were to set the PrimaryInterval to 12 Hours, then you could have the StartIndicator appear in the middle of the day. Please let me know if you have any other questions with this matter.
Hello Matteo,
thank you for asking. Yes I have.
I did it with assigning an image to oTask.TimeLineSettings.BarSettings.StartIndicatorAppearance.Image. TimelineSettings.PrimaryInterval is { DateInterval: 1 Days }oTask.StartDateTime is for example today, noon ( in german format 07.07.2010 12:00:00 ).oTask.TimelineSettings.BarSettings.StartIndicatorVisible = True;oTask.TimelineSettings.BarSettings.EndIndicatorVisible = False;oTask.TimelineSettings.BarSettings.BarVisible = False;The startIndicator is always displayed an the left end of the day in timeline. I would like to place it in the middle of the day. Is this achievable?
Thank you,
Do you have any more questions on this matter?
Sincerely,MatteoDeveloper Support EngineerInfragisticswww.infragistics.com/support
Not all controls support ImageLists; WinGanttView is one of the controls that doesn't. You can achieve the same result, however, by assigning ImageList.Images[x] to the oTask.TimeLineSettings.BarSettings.StartIndicatorAppearance.Image property, where x is the index of the image in the ImageList's Images collection.