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
445
Change VisiblePosition of a Custom Column
posted

Hello,

    How to specify a custom column to be displayed in between the built-in columns i.e.

  

   ID | Task | Start | Finish | Custom 1 | Custom 2| Duration | % Complete | Notes

  Please take note that "Custom1" & "Custom2" are inserted in between Finish & Duration. How to do that in GanttView control?

Thank you

Parents
  • 53790
    posted

    Hello LSG,

    Maybe one possibel approach to achieve desired behavior could be if you are usign the code below:

    // To create a custom column with name "MyColumn"

    ultraCalendarInfo1.CustomTaskColumns.Add("MyColumn", typeof(int), false, 0);

    // to set desired position

    ultraGanttView1.GridSettings.ColumnSettings["MyColumn"].VisiblePosition = 2;

    Please take a look at the attached sample and video file for more details and let me know if you have any questions

    Regards

    Video 088.rar
Reply Children
No Data