TalksAllot Report post Posted October 17, 2012 I have a Column3D chart setup to drill down to anotherColumn3D chart which works as expected. When I try to add another Column3dchart that I want to drill down to a Pie3D chart it will open the Column3Dchart rather than the Pie3D chart. Should this work? Share this post Link to post Share on other sites
Guest Sumedh Report post Posted October 19, 2012 Hi, Welcome to FusionCharts Forum. With regard to your query, Are you calling configureLink function before rendering the charts? Please note, you would need to call configureLink function after the chart has been rendered. If this doesn't help, please paste your sample code here. Share this post Link to post Share on other sites
TalksAllot Report post Posted October 23, 2012 Here is a sample project. If you run the default page the first column3d graph should drill down to a pie3d and the second column3d graph should drill down to a column3d graph however they both drill down to a column3d. SampleProject.zip Share this post Link to post Share on other sites
Guest Sumedh Report post Posted October 24, 2012 Hi, Thanks for sharing the sample project with us. Here in this scenario, you are calling configureLink function before rendering the charts. Please note, you would need to call this function after rendering the chart. You would need to modify your code in Default.aspx page as below: Ref. Code: <asp:Content ID="BodyContent" runat="server" ContentPlaceHolderID="MainContent"> <script type="text/javascript" src="FusionCharts/FusionCharts.js"></script> // FIRST RENDER THE CHARTS WITH LITERAL <asp:Literal ID="linkedChart" runat="server"></asp:Literal> <asp:Literal ID="linkedChart2" runat="server"></asp:Literal> // CALL CONFIGURE FUNCTION AFTER RENDERING THE CHARTS <script type="text/javascript"> var chartRef = FusionCharts("myChartId"); chartRef.configureLink({ swfUrl: "FusionCharts/Pie3D.swf", overlayButton: { message: 'close', fontColor: '880000', bgColor: 'FFEEEE', borderColor: '660000' } }, 0); var chartRef = FusionCharts("myChartId2"); chartRef.configureLink({ swfUrl: "FusionCharts/Column3D.swf", overlayButton: { message: 'close', fontColor: '880000', bgColor: 'FFEEEE', borderColor: '660000' } }, 0); </script> </asp:Content> Also, the .SWF file's path in the configureLink function for Pie3D chart and Column3D chart was incorrect. As, all the SWF files are present in the FusionCharts folder according to your project directory structure. Please find attached modified sample project for your reference. Hope this helps! Mod_SampleProject.zip Share this post Link to post Share on other sites