Based upon requirements I have, I need to basically have more than 1 GanttTimeEntry for a given GanttItem. Following is a screenshot of what I have now:
And here is where I need to be:
Thanks in advance, and please let me know if you need any additional information.
Hello jrw4514,
Thank you for posting in the community.
You could add multiple GanttTimeEntries using code, similar to the following:
GanttItem gi = new GanttItem();
GanttTimeEntry gte1 = new GanttTimeEntry();
GanttTimeEntry gte2 = new GanttTimeEntry();
gi.Times.Add(gte1);
gi.Times.Add(gte2);
Please let me know if this helps.
Hi Nikolay,
Thanks for the response. What I am trying to do is add "2 separate bars with multiple GanttTimeEntries" for the same key. In my example above, that would be "CW-1". In the sample you posted, those entries would be added to the same single bar on the key, as in the first picture I posted.
I know this is a little confusing, but if you look at the second picture I posted above, you will see the "2 bars" I am talking about.
Thanks again.
Jason