Hello, I am looking for help with WinChart I use with VS2005 in C#.The type of chart I use is a GanttChart. I created DataTable which as a first column gets series name. Everything works fine, but I need one improvement in my app, because now chart displays the data grouped in series, but I cannot see any rule in order of displaying series. So users can see one time 'critical' series in the upper part of chart, another time at the bottom, and they want to see it in specific order: for example - first - critical, then 'normal', then 'can wait'.
Is there any way I can specify the order of displaying series?And if there is no way to do it, also please tell me about that.Thank you in advance for any ideas,Agnieszka
Hello Agniezska,
Usually the GanttChart is used for visualizing time spans. Here is a sample GantChart:
As you see the X axis starts with the earliest DateTime value and this is what first came ot my mind as ugrent or critical. Tell me if you have something else in mind.
Sincerely,
Petar Monov
Developer Support Engineer,
Infragistics, Inc
Hello, I have the same thing in mind like Sam A. - I wanted fro example yellow parts - critical - always on the top, other on the bottom.Sam answer gave me a hint. I used something very similar. I wanted to stay with one source, I just sorted list of objects like I want, before I added them to ganttrows in loop.Thank you!