can you have more then one range for each item? It always adds a duplicate item when I try.
Hi,
I’m not sure I understand the question. You can add multiple ranges for one item with:
GanttItem item = new GanttItem();
item.Times.Add(new GanttTimeEntry(DateTime.Now, DateTime.Now.AddDays(1)));
item.Times.Add(new GanttTimeEntry(DateTime.Now.AddDays(2), DateTime.Now.AddDays(3)));
Is that you are looking for? If not, can you provide a little more info about your issue?