kimbitna Report post Posted November 5, 2012 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? Share this post Link to post Share on other sites
Guest Sumedh Report post Posted November 6, 2012 Hi, A warm welcome to FusionCharts Forum! 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