Sign in to follow this  
kimbitna

About Export Fucntion

Recommended Posts

Hello.

 

Thank you for support fusion charts.

 

I am using print/save function.

 

but I realize that your component just support 2 type export.

 

but I want display save button another place next to print button.

 

I attached image file.

 

How can i do?

post-30185-0-53179600-1352111153_thumb.jpg

Share this post


Link to post
Share on other sites
Guest Sumedh

Hi,

 

A warm welcome to FusionCharts Forum! smile.gif

 

With regard to your query,

 

If you want to disable the export button, then you can disable by setting "exportShowMenuItem" as "0".

 

Also, you can initiate export with html button.

 

Ref. Code:

 

<script type="text/javascript">

function ExportMyChart() {

var chartObject = getChartFromId('myChart');

if( chartObject.hasRendered() ) chartObject.exportChart();

}

</script>

 

<input type="button" value="Export My Chart" onclick="ExportMyChart()" />

 

For more information, please refer the following URL:

http://docs.fusioncharts.com/charts/contents/?exporting-image/javascript-ref/ECJavaScript.html

 

If this doesn't suffice your requirement, then please elaborate more on your requirement.

 

Hope this helps!

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
Sign in to follow this