Hai,
I am really new to infragistics and can hardly find a tutorial to draw a "Gnatt Chart" using "UltraChart " control in asp.net. If somebody can help me out to find a tutorial it will be really great.
Thanks in advance
the task owner can't be displayed in the tooltip automatically, but you can use IRenderLabel to output whatever label you want each time the tooltip appears.
our feature request page is here, if you want to enter your request for task owners inside the tooltips: http://devcenter.infragistics.com/protected/requestfeature.aspx
Is there any way to display the task owner on the tooltip? I read the about the IRenderLabel class implementation but I still can't understand it very well
Thanks
Misael
jebinjc said: 1) In each bar I need to give a specific label and a specific tooltip too. I tried to put a label this way ganttTimeEntry.Label = "jebinjc"; but nothing worked and about tooltip I didnt find any help.
1) In each bar I need to give a specific label and a specific tooltip too. I tried to put a label this way
ganttTimeEntry.Label = "jebinjc";
but nothing worked and about tooltip I didnt find any help.
The GanttTimeEntry has an Owner property, and if you set the GanttChart.ShowOwners property to True, you will see the Owner printed atop each TimeEntry.
As for tooltips, they are controlled by the chart's Tooltips.FormatString property. If you have custom application logic for getting the tooltip text, you need to implement the IRenderLabel interface.
http://help.infragistics.com/Help/NetAdvantage/ASPNET/2009.1/CLR3.5/html/Chart_Customize_Labels_Using_the_IRenderLabel_Interface.html
jebinjc said: 2) Is there a property to group the dates which is in X2 axis or how can I do something like below 2/12/2009 2/19/2009 2/26/2009 Sun Mon Tue Wed Thr Fri Sat Sun Mon Tue Wed Thr Fri Sat Sun Mon Tue Wed Thr Fri Sat and so on......
2) Is there a property to group the dates which is in X2 axis or how can I do something like below
2/12/2009 2/19/2009 2/26/2009
Sun Mon Tue Wed Thr Fri Sat Sun Mon Tue Wed Thr Fri Sat Sun Mon Tue Wed Thr Fri Sat
and so on......
sorry, but we don't have that type of label grouping as a feature of the chart. text can be added inside the FillSceneGraph event, but getting the positioning right would be a challenge.
David,
Thanks a lot, it was really helpful. Using GanttSeries, GanttItem and GrantTimeEntry classes it was really easy.
I got 2 more doubt. I made a GanttSeries and in that added different GanttItem and in each GanttItem I made different GanttTimeEntry which made the Gantt Chart ready. Now my doubts
Looking forward for your reply. Thanks in advance
there is no such tutorial, but here are the docs for gantt chart: http://help.infragistics.com/Help/NetAdvantage/ASPNET/2009.1/CLR3.5/html/Chart_Gantt_Chart.html
and here is a link to one of the gantt chart samples (with source code viewer): http://samples.infragistics.com/2009.1/WebFeatureBrowser/WebCharts/Gallery/Gantt/Gantt.aspx