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
30
Ultraganttview Timeline
posted

Hello,

is it possible to remove or replace the top timeline?

I only want the three others and do not need the first one

Thanks for any help

Parents
No Data
Reply
  • 6120
    Offline posted

    Hello Marvin,

    It is possible to modify timeline shown in the chart area of UltraGanttView by modifying the AdditionalIntervals collection. When one or more members exist in the AdditionalIntervals collection, multiple date/time intervals are displayed from top to bottom in order of descending duration. To remove the top timeline you should remove it from the AdditionalIntervals collection. For example, you can write something like this to achieve it:

    DateInterval ganttAddInterval1 = new DateInterval(1, DateIntervalUnits.Days);
    this.ultraGanttView1.TimelineSettings.AdditionalIntervals.Remove(ganttAddInterval1);

    To read more about working with the AdditionalIntervals collection refer to this link.

    Please let me know if I may be of further assistance.

Children