I am very new to Infragistics, need to do a drill down graph. Basically what I need is, I will display the master bar chart, when the user clicks on the bar [I need hoover/ data highlighting effect also], it will efresh the screen or open a new window with master ID passed as a query string and on that page I will display child bar charts. Can it be done ?
Thanks
There are a number of ways you could accomplish this. One way is using the drilldown feature of the chart. You can find how to set up this feature in our documentation:
http://help.infragistics.com/Help/NetAdvantage/NET/2008.1/CLR2.0/html/Chart_Drilldown.html
Another way would be to handle the ChartDataClicked event of the Chart and rebind the chart to another datatable.
http://help.infragistics.com/Help/NetAdvantage/NET/2008.1/CLR2.0/html/Infragistics2.WebUI.UltraWebChart.v8.1~Infragistics.WebUI.UltraWebChart.UltraChart~ChartDataClicked_EV.html
The last way could be done by handling the ClientOnMouseClick client side event and using some JavaScript to open a new window with your query string parameters.
http://help.infragistics.com/Help/NetAdvantage/NET/2008.1/CLR2.0/html/WebChart_Client_Side_Events_CSOM.html
The examples given here are for Winforms. I need for a WebFor (asp.net) . Is there a sample code I can download from ? And also I am not getting higlighting effect. I copied the same UltraChart that shows highlighting effect which was in samples and pasted in my page and set a new data source to it. But it doesnt show that effect.
I am using Trial Version of WebCharts is it because of that ? I my team I am pushing Infragistics others are pushing Corda Pop Charts, so I need to show these features asap :)
Raghu
Our charts are very similar between windows forms and asp.net. The code should work in either environment and there are only some minor differences regarding how they are published. Here is two part Knowledge Base article that shows you how to implement drilldown on our webchart.
http://devcenter.infragistics.com/Support/KnowledgeBaseArticle.aspx?ArticleID=4880
http://devcenter.infragistics.com/Support/KnowledgeBaseArticle.Aspx?ArticleID=4882
If you want to see some of the capabilities of our Chart, please take a look at our Feature Browser here:
http://samples.infragistics.com/2008.1/webfeaturebrowser/default.htm
There is a charting section that shows our various chart types using specific features. You will also have access to the aspx and aspx.cs or aspx.vb that generates those samples through the tabbed interface.