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
Here is the sample
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