Hi, I'd like to know if it's possible to control the order in which the Gantt items are displayed in the chart. Normally they would be displayed in a bottom-up fashion, what would I do to display them in a top-down fashion?
The items are arranged in the same order as your series/table, however, the gantt chart can only display the data from top to bottom. That is, task 1 of series 1 will always be at the bottom and the last task of the last series at the top. Maybe you can try reversing the order of item in your datasource.
I had this doubt because in this page :
http://help.infragistics.com/Help/NetAdvantage/NET/2008.2/CLR2.0/html/Chart_Working_with_Gantt_Chart_Data.html
using a datatable, task 1 of series 1 is displayed first at the top. This is what I'm actually trying to achieve. It only works if I use DataTable instead of GanttDataSource ?
Thanks in advance
I believe this is an error in documentation. I'm not quite sure how that happened, but the gantt chart was never able to control the order of the items, regardless of whether it's a table or a GanttDataSource. However, if you add items in reverse, you should get the behavior you're looking for.
Hi Max, thanks for your help. We actually reversed the items and worked like a charm ;)