krishnalamp

Members
  • Content count

    7
  • Joined

  • Last visited

About krishnalamp

  • Rank
    Forum Newbie
  1. Thanks for your response. So my requirement is not going to be fit with client-side. So I will do server-side batch process. Can you please send sample code for that? 1. It should create single chart from multiple charts and after it automatically saves with image . 2. I will use print() for that image.
  2. Hi, Basically I have multiple charts on a page. I want to be able to print all those charts in single chart. Batch Export process is the only one solution for this. In Batch Export, we can use "Client Side Batch Export" (OR) "Server Side Batch Export". 1. Client Side Batch Export: ----------------------------------------- I have written total code for generating the single image by using Batch Export Process. But it's not creating directly any image on serverside. I want to export all the images in a single step. It's asking one more button for saving the image. And also no idea how we have to use "print" for one single image. please check attached code. We can't use "exportAction" Attribute Name on client-side exporting for saving the image. Ref URL : http://www.fusioncharts.com/docs/?/ECBatchSetup.html 2. Server Side Batch Export: ---------------------------------------- As per Forum, I have downloaded zipfiles folders in my local mechine.But it's not working. Below is FORUM URL. http://www.fusioncharts.com/forum/Topic22551-31-1.aspx?Update=1 Please check and let me know all solutions. Thansk You. Thanks, Krishna
  3. Hi, I am trying to use same server side Batch Export.I am getting Javascript error "Error calling method on NPObject! [plugin exception: Error in Actionscript. Use a try/catch block to find error.]."... please check it once. Thanks, krishna
  4. Do we have a print option for Client-side Batch Export process? Because exported image will be sent back to client as download. Can you please tell me one single step to create multiple charts as single chart with print option. Thanks, krishna
  5. basically to print multiple charts as a single chart. I have to use one time print to use for multiple graphs.
  6. The char will appear within this DIV. This text will be replaced by the chart. var myChart1 = new FusionCharts("http://images.traderonline.com/img/tol-design/imt/fusioncharts/Column2D.swf", "myChartId1", "350", "300", "0", "1"); // myChart1.setDataURL("SimpleExample.xml"); myChart1.setDataXML(""); myChart1.render("chart1div"); The chart will appear within this DIV. This text will be replaced by the chart. var myChart3 = new FusionCharts("http://images.traderonline.com/img/tol-design/imt/fusioncharts/Pie3D.swf", "myChartId3", "350", "300", "0", "1"); // myChart3.setDataURL("SimpleExample.xml"); myChart3.setDataXML(""); myChart3.render("chart3div"); FusionCharts Export Handler Component var myExportComponent = new FusionChartsExportObject("fcBatchExporter1", "http://images.traderonline.com/img/tol-design/imt/fusioncharts/FCExporter.swf "); //Add the charts to queue. The charts are referred to by their DOM Id. myExportComponent.sourceCharts = ['myChartId1','myChartId3']; //------ Export Component Attributes ------// //Set the mode as full mode myExportComponent.componentAttributes.fullMode='1'; //Set saving mode as both. This allows users to download individual charts/ as well as download all charts as a single file. myExportComponent.componentAttributes.saveMode='batch'; //Show allowed export format drop-down // myExportComponent.componentAttributes.showAllowedTypes = '1'; //Cosmetics //default file name myExportComponent.componentAttributes.defaultExportFileName = 'MyCharts'; myExportComponent.componentAttributes.showAllowedTypes='0'; //Width and height myExportComponent.componentAttributes.width = '350'; myExportComponent.componentAttributes.height = '140'; //Message - caption of export component myExportComponent.componentAttributes.showMessage = '1'; myExportComponent.componentAttributes.message = 'Click on button above to begin export of charts. Then save from here.'; //Render the exporter SWF in our DIV fcexpDiv myExportComponent.Render("fcexpDiv");
  7. The char will appear within this DIV. This text will be replaced by the chart. var myChart1 = new FusionCharts("http://images.traderonline.com/img/tol-design/imt/fusioncharts/Column2D.swf", "myChartId1", "350", "300", "0", "1"); // myChart1.setDataURL("SimpleExample.xml"); myChart1.setDataXML(""); myChart1.render("chart1div"); The chart will appear within this DIV. This text will be replaced by the chart. var myChart3 = new FusionCharts("http://images.traderonline.com/img/tol-design/imt/fusioncharts/Pie3D.swf", "myChartId3", "350", "300", "0", "1"); // myChart3.setDataURL("SimpleExample.xml"); myChart3.setDataXML(""); myChart3.render("chart3div"); FusionCharts Export Handler Component var myExportComponent = new FusionChartsExportObject("fcBatchExporter1", "http://images.traderonline.com/img/tol-design/imt/fusioncharts/FCExporter.swf "); //Add the charts to queue. The charts are referred to by their DOM Id. myExportComponent.sourceCharts = ['myChartId1','myChartId3']; //------ Export Component Attributes ------// //Set the mode as full mode myExportComponent.componentAttributes.fullMode='1'; //Set saving mode as both. This allows users to download individual charts/ as well as download all charts as a single file. myExportComponent.componentAttributes.saveMode='batch'; //Show allowed export format drop-down // myExportComponent.componentAttributes.showAllowedTypes = '1'; //Cosmetics //default file name myExportComponent.componentAttributes.defaultExportFileName = 'MyCharts'; myExportComponent.componentAttributes.showAllowedTypes='0'; //Width and height myExportComponent.componentAttributes.width = '350'; myExportComponent.componentAttributes.height = '140'; //Message - caption of export component myExportComponent.componentAttributes.showMessage = '1'; myExportComponent.componentAttributes.message = 'Click on button above to begin export of charts. Then save from here.'; //Render the exporter SWF in our DIV fcexpDiv myExportComponent.Render("fcexpDiv");