Guest Basundhara Ghosal

Exporting multiple charts to powerpoint

Recommended Posts

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 chart

var 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

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

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 by Guest

Share this post


Link to post
Share on other sites
Guest Basundhara Ghosal

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

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now