muralikanth Report post Posted August 8, 2012 Hi... how to open new popup window when click pie chart using java script.... Share this post Link to post Share on other sites
babuu Report post Posted August 8, 2012 Hey, Added Listener while rendering.find below code . function myChartListener(eventObject, argumentsObject) { /// add code for popup } /// render code FusionCharts.setCurrentRenderer('JavaScript'); var chartId = "ChartId"+ Math.floor(Math.random() * (new Date()).getTime() + 1); var chiefExecutiveChart = new FusionCharts(path, chartId, width,height,'0', '1'); chiefExecutiveChart.setDataXML(xml.join("")); chiefExecutiveChart.render(divId); FusionCharts(chartId).addEventListener("click", myChartListener); thanks babu Hi... how to open new popup window when click pie chart using java script.... Share this post Link to post Share on other sites
Guest Sumedh Report post Posted August 8, 2012 Hi... how to open new popup window when click pie chart using java script.... Hey, Also, refer the following link: http://docs.fusioncharts.com/charts/contents/?DrillDown/PopUps.html Share this post Link to post Share on other sites