Hello,
I use the WinGantView in GridAndTimeLine display mode and i have some questions :
In my grid, all tasks have a duration in Hours but Summary tasks are still displayed in Days: How can i configure Summary Tasks to display a duration in Hours ?
In TimeLineView, i have one column per day. (M | T | W | T | F | S | S) My task duration is only 2 Hours long and completly fill le colum: Is it possible to display this task in a proportional way into my day column ? Example: 4Hours task fills 1/2 column with, 2Hours task fills 1/4 column and so on ?
Thanks in advance for your reply.Regards,Maxime.
Hello Maxime,
The summary tasks' time and duration cannot be modified, this is an internal limitation in our control. As to the proportional requirement, it could be achieved using a progressbar but the grid showing in the ganttview is limited also and you cannot put a progressbar in a column.
You might find a way to achieve what you desire using custom columns:
http://help.infragistics.com/NetAdvantage/WinForms/2012.2/CLR4.0/?page=WinGanttView_Custom_Columns.html.
If you believe that this is insufficient, I could log new product idea(s) for you.
Hello Boris,
thanks very much for your reply but the progress bar is not what i really want to do.
My question is about the taskbar displayed in the timeline that fills the completly the day with only 2 hours of duration.
Regards,Maxime.
Could you please try the following code and let me know of the result:
TimeInterval ganttTimeInterval = new TimeInterval(30, TimeIntervalUnits.Hours);
this.ultraGanttView1.TimelineSettings.PrimaryInterval = ganttTimeInterval;
unfortunately, it dosen't work. Task bar have the same size and the column header for days are replaced by "06" with "TimeInterval(30" or "00" with "TimeInterval(24."
You ca see the result here : http://imageshack.us/photo/my-images/834/tasksj.png/
This is my TimelineSettings configuration :
this.ultraGanttView1.TimelineSettings.BarSettings.BarTextRight = Infragistics.Win.UltraWinSchedule.TaskUI.BarTextField.Name; this.ultraGanttView1.TimelineSettings.ToolTipSettings.DateTimeFormat = "g"; this.ultraGanttView1.TimelineSettings.BarSettings.BarHeight = 15; this.ultraGanttView1.TimelineSettings.BarSettings.PercentCompleteBarHeight = 11; TimeInterval ganttTimeInterval = new TimeInterval(30, TimeIntervalUnits.Hours); this.ultraGanttView1.TimelineSettings.PrimaryInterval = ganttTimeInterval;
Thanks for your help.
Regards
I do not see a way around this. If I understand right, you want your columns to still be with days duration, not hours and the tasks to take only a part of the column. If this is really what you want, then I think that there could be a way for this to be achieved using a creation filter. You could read about it at the following link: http://help.infragistics.com/Help/NetAdvantage/WinForms/2012.1/CLR2.0/html/Win_Creation_Filter.html. Here are some topics from our community which could also help you: http://community.infragistics.com/forums/t/34485.aspx, http://forums.infragistics.com/forums/t/47561.aspx http://community.infragistics.com/forums/t/58186.aspx, http://community.infragistics.com/forums/t/9989.aspx and http://community.infragistics.com/forums/t/50234.aspx. The above approach is not so recommended, because it features element's resizing, creating or removing and could lead to some unexpected behaviors.
If this does not help, I will log a new product idea for you.
thanks for your help. This approach is a little bit tricky... I think you can log a new product idea.Regards.
The "Support of partially task indicators when primary interval is set 'Days'" idea has a reference number : PI13010101.
After some research, the "Ability to filter the grid section columns" has been determined to be a new product idea. I have sent your idea directly to our product management team.
Our product team chooses new ideas for development based on popular feedback from our customer base. Infragistics continues to monitor application development for all of our products, so as trends appear in requested features, we can plan accordingly.
We value your input, and our philosophy is to enhance our toolset based on customer feedback. If your idea is chosen for development, you will be notified at that time.
Your reference number for this product idea is PI13010100.
If you would like to follow up on your request at a later point, you may contact Developer Support management via email. Please include the reference number of your product idea in the subject and body of your email message. You can reach Developer Support management through the following email address: dsmanager@infragistics.com
Thank you for your request.
I have an additional question : does WinGantView supports column filtering ?
Regards.