Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
60
Gantt Chart 2 ranges for one item
posted

can you have more then one range for each item?  It always adds a duplicate item when I try.

Parents
No Data
Reply
  • 17605
    posted

    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?

Children
No Data