Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
becoop
Starting Member
2 Posts |
Posted - 2005-01-10 : 11:30:31
|
Is there anyway to make a chart click through to a report where the whole chart image is the link instead of just a piece of data in the chart? I am trying to make the complete chart a hyperlink to a report. |
|
biju balan
Starting Member
5 Posts |
Posted - 2008-08-27 : 06:18:50
|
i am facing a similar problem. I need to develop a chart and table in a single report in which a single click in the chart will give a detail data in table. Can you please help |
|
|
visakh16
Very Important crosS Applying yaK Herder
52326 Posts |
Posted - 2008-08-27 : 06:27:30
|
Put the chart and detail data onto two rows of a table. Then set toggle property of second row(detail) cell to be based on first row (chart) cell.This should give you functionalty looking for. |
|
|
biju balan
Starting Member
5 Posts |
Posted - 2008-08-27 : 08:19:23
|
i think you did'nt understand my req....i have a pie chart report with year and product in category and sales amount in data field. What i need is, when i click on the chart report say a sales amount of a product for a particular year i need to get a table displayed which shows the product,subproduct, sales and orderquantity for that product for the particular year.I need to display the table in the same report as that of chart.ie, below the chartany ideas |
|
|
Dance Doll
Yak Posting Veteran
54 Posts |
Posted - 2008-08-28 : 15:03:08
|
You need to open the code from Visual Studio and looking for your chart name.Add <Action>LinkToYourDetailsReport</Action> within your chart section. |
|
|
|
|
|