rohit.kumar
Members-
Content count
7 -
Joined
-
Last visited
About rohit.kumar
-
Rank
Forum Newbie
-
chartObj.setDataURL is not a function error in PHP examples
rohit.kumar replied to freeyland's topic in Javascript Problems
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. -
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
-
populate FusionCharts with XML data AJAX
rohit.kumar replied to mwl707's topic in Javascript Problems
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 -
populate FusionCharts with XML data AJAX
rohit.kumar replied to mwl707's topic in Javascript Problems
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 -
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
-
Mutiple charts per page using getXML and dataURL method
rohit.kumar replied to TCarr's topic in FusionCharts and PHP
Hi, Could you please try using this attached sample. Regards, Rohit Kumar SamplePHPClass.zip -
Problem with link parameters in addChartData
rohit.kumar replied to rohit.kumar's topic in FusionCharts and PHP
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