200West Report post Posted May 6, 2013 I am having trouble limiting my drill through query for a single series pie chart. I have an ASP page which displays 6 charts. I am using classic ASP along with Fusion Charts ASP Class to display a pie chart and drill through on the data. I have filters at the top of my page which filter the results of all 6 charts. I want to display one of the fields from the filters in the chart but allow the chart to drill through to additional data using all of the filters. Is there a way to drill through on multiple parameters without specifying them in the select statement? Select Statement for chart: select BV, ROUND(SUM(AMT)) amt from KPI_BACKLOG_V WHERE YEAR = 2013 and SITE = 'CIC' group by BV Drill Through and Chart display: Call FC6.addDataFromDatabase(oRs6, "amt ", "BV","","N-Drilldown/Request.asp?period=##PERIOD_NAME##&segment=##SEGMENT##&site=##SITE##&BV=##BV##&BSV=##BSV##&Market=##STRAT_MKT##&Family=##STRAT_FAM##") Share this post Link to post Share on other sites
Guest Sumedh Report post Posted May 7, 2013 Hi, Welcome to FusionCharts Forum! While using FusinCharts ASP class functions, you can pass only limited parameters with functions. Passing extra parameters with these FusionCharts ASP Class functions is not possible. You can use simple Classic ASP (without using FusionChart ASP Class) to render charts using database. Since, you can generated XML or iterate data through database as per your requirement. For more information, please refer the following link: http://docs.fusioncharts.com/charts/contents/guide-for-web-developers/asp/ASP_BasicExample.html http://docs.fusioncharts.com/charts/contents/guide-for-web-developers/asp/ASP_DB.html Hope this help! Share this post Link to post Share on other sites