deepanker
Members-
Content count
7 -
Joined
-
Last visited
About deepanker
-
Rank
Forum Newbie
-
Its now working. When I can download js file and link the local system: If I give the server path like this:- <script type="text/javascript" src="//www.fusioncharts.com/lib/fcassets/3.12.2/fusioncharts.js"></script> if I download the js file and give the local system. It can not render the chart, its give an error. Please give me suggestion :
-
if you are not able to solve my query in the conversation then you can schedule the call on video call (Hangout). My Email id is [email protected] .
-
I am using your latest version : //www.fusioncharts.com/lib/fcassets/3.12.2/fusioncharts.js please give the correct URL if I am wrong.
-
HI All, I am using 3.12.1 your latest version. The file is able to export but size is 0 kb. I can not upload me exported image because size is 0 kb. And I am using below code: and this code run on the click event : var batchExportConfig = function() { FusionCharts.batchExport() } And I am following this link: https://www.fusioncharts.com/dev/exporting-charts/using-fc-export-server/exporting-multiple-charts-in-a-single-image Edited 2 hours ago by deepanker
-
-
HI All, The file is able to export but size is 0 kb. I can not upload me exported image because size is 0 kb. And I am using below code: and this code run on the click event : var batchExportConfig = function() { FusionCharts.batchExport() } And I am following this link: https://www.fusioncharts.com/dev/exporting-charts/using-fc-export-server/exporting-multiple-charts-in-a-single-image
-
I am getting an error after on click method: Cannot read property 'DOWNLOAD' of undefined. render the chart code : function renderChart(){ FusionCharts.setCurrentRenderer('javascript'); var chartSettings = []; chartSettings['id'] = "new-chart-1"; / / i am using this id to export the all chart in blow code to batch export. chartSettings['type'] = '${request.contextPath}/rq-theme/charts/swf/MSLine.swf'; chartSettings['renderAt'] = div; chartSettings['swidth'] = '99%'; chartSettings['height'] = height; chartSettings['dataFormat'] = 'json'; chartSettings['dataSource'] = jsonDataArray; FusionCharts.ready(function(){ var fusioncharts = new FusionCharts(chartSettings); fusioncharts.render(); }); } My Function is : var batchExportConfig = function() { FusionCharts.batchExport({ "charts": [{ "id": "new-chart-1", }], "exportFileName": "batchExport", "exportFormats": "jpg", "exportAtClientSide": "1" }) } Button Code : <button style="z-index: 111111111111;" onclick="batchExportConfig()" id="export_charts" class="btn btn-primary">Chart Export</button>