rohit.kumar

Members
  • Content count

    7
  • Joined

  • Last visited

About rohit.kumar

  • Rank
    Forum Newbie
  1. Hi, We have tested your code its working fine. Could you please delete this line and try again? echo renderChart("Column2D.swf?ChartNoDataText=Please select a factory from pie chart above to view detailed data.", "", "", "FactoryDetailed", 600, 250, false, false); Hope this helps. Regards, Rohit Kumar Coming to CeBIT 2010, Hannover? Visit us at Hall 6, Webciety Booth K33. We would love to see you there.
  2. Schema Files for Fusion Charts

    Hello Nagendra, We have modified the schema MSStackedColumn2DLineDYSchema.xsd and fixed the issues, new file is attached with this post. Please check it and let us know. Hope this help. Regards, Rohit Kumar MSStackedColumn2DLineDYSchema.xsd.zip
  3. populate FusionCharts with XML data AJAX

    Hi, Welcome, we are glad it helped. The ResponseXML property returns an XML document object and responseText returns the HTTP response as a string. FusionCharts setDataXML need XML as a plane text to render. Regards, Rohit Kumar
  4. populate FusionCharts with XML data AJAX

    Hello, Could you please use responseText instead of responseXML and try once? Example: var xdoc = XMLHttpRequestObject.responseText; in place of var xdoc = XMLHttpRequestObject.responseXML;. Hope this helps. Regards, Rohit Kumar
  5. How to export multi chart by one click

    Hi, Could you please try using setExportOverrides to change the caption and exported file name. Following is an example how to use it and you also need to replace the FusionChartsExportComponent.js file which is attached with the sample example. myExportComponent.setExportOverrides({'chartId1':{meta:{caption:'new caption 1'},parameters: {exportFileName:'New_File_Name'}}, 'chartId2': {meta:{}}, 'chartId3': {meta:{caption:' '}}, 'chartId4': {meta:{caption:'new caption 4'}} }); Hope this helps. Regards, Rohit Kumar SampleExportComponent.zip
  6. Hi, Could you please try using this attached sample. Regards, Rohit Kumar SamplePHPClass.zip
  7. Problem with link parameters in addChartData

    Hi, Welcome to FusionCharts forum. Could you please use the attached FusionCharts_Gen.php class file and try once? Regards, Rohit Kumar FusionCharts_Gen.php.zip