pharmarc Report post Posted June 15, 2010 Hi Team, I have cretaed fusion charts using licenced version(3) .I want to export the chart and data to powerpoint(template) like each chart in one slide. below is my code for creating chart.Can you please share the code for exporting to powerpoint. <script type="text/javascript" src="App/FusionCharts.js"> function GenerateChartForBasicReport() { //first chart var myChartOppt = new FusionCharts("App/StackedColumn3D.swf", "chartByOppt", "460", "200", "0", "0");myChartOppt.addParam( "WMode", "Transparent");myChartOppt.setDataURL( "SubReports/GrossSalesByOppurt.aspx");myChartOppt.render( "chartByOppt"); //second chartvar myChartCountry = new FusionCharts("App/StackedColumn3D.swf", "chartByCountry", "460", "200", "0", "0"); myChartCountry.addParam("WMode", "Transparent"); myChartCountry.setDataURL("SubReports/GrossSalesByCountry.aspx"); myChartCountry.render("chartByCountry"); //third chart var myChartAsset = new FusionCharts("App/MSLine.swf", "chartByAsset", "920", "220", "0", "0");myChartAsset.addParam( "WMode", "Transparent");myChartAsset.setDataURL( "SubReports/AssetSales.aspx");myChartAsset.render( "AssetSales");} }</script> Share this post Link to post Share on other sites
Guest Basundhara Ghosal Report post Posted June 17, 2010 Hi, Welcome to FusionCharts forum. First, please try saving the charts as images using the 'export' functionality and then please try inserting the image to use in PowerPoint. Hope this helps. Share this post Link to post Share on other sites
pharmarc Report post Posted June 18, 2010 (edited) Hi Basundhara Ghosal Thank You for your past reply. I have developed chart but i don't know how to export as image in single button event.I am not able understand from documentation .could you please send the code for exporting and how configure exporinghandler in asp.net project. Edited June 18, 2010 by Guest Share this post Link to post Share on other sites
Guest Basundhara Ghosal Report post Posted June 18, 2010 Hi, Your are most welcome. Please refer to the samples that we are sending you as an attachment. Also, please refer to the links below :- Ref.- http://www.fusioncharts.com/docs?/ECServerDownload.html http://www.fusioncharts.com/docs?/ECServerSave.html http://www.fusioncharts.com/docs?/ECServerFormats.html http://www.fusioncharts.com/docs?/ECExportDialog.html Hope this helps. export.zip server-side_export.zip Share this post Link to post Share on other sites