-
Content count
1,253 -
Joined
-
Last visited
-
Days Won
3
Everything posted by Rahul Kumar
-
Hi Gary, I am afraid, PHP class is design to work only with FusionCharts and FusionCharts FREE.
-
Hi Brian, I am afraid, it is not possible.
-
Hi Maz, Could you please change your chart id in getChartFromId() method to "ChartId1" instead of "chartId1" ? Also for your second query please make sure that your DIV should have an absolute pixel value.
-
FusionChart with SmartClient Export not working
Rahul Kumar replied to gshahri's topic in Miscellaneous
Hi Girish, Could you please send us some of your code which show us how you are creating/rendering the chart? -
Hi Amdy, I am afraid, it is not supported with arrays as of now.
-
Hi Amdy, You would need to use vline as follow: For Single Series Chart: For Multi-Series Chart:
-
Hi Koti, Could you please send us the generated XML and the JavaScript function which is being called by Drill Down? Also in order to use
-
multiple charts, one page, one query
Rahul Kumar replied to Rahul Kumar's topic in FusionCharts and ASP.NET
Hi, Yes it is possible if you store the generated XML into a Global Variable then passed it to the charts. But doing this will render the same data with different chart. -
Hi, You would need to re-render the chart completely in order to get the Chart Message working by using $FC->renderChart(); at the end.
-
Sometimes it's not display the chart with jQuery' load method
Rahul Kumar replied to Rahul Kumar's topic in General usage
Hi ghostxue , Could you please send us some visuals so that we can know about "it just show one point"? -
Hi HB, If it is your complete code then I found that you are not including FusionCharts.js file which is necessary to render the chart. So could you please use the following code with proper path to FusionCharts.js file and try again? You would need to set the path for the FusionCharts.js (marked bold)
-
Hi Rodrigo, You are most WelCome :hehe: .
-
FC for VB: how to change the size of a chart
Rahul Kumar replied to amdy789's topic in General usage
Hi Andy, Could you please send us a sample application which show us this issue at [email protected]? -
Hi Rodrigo, To insert the accent characters you would need to first add BOM characters to the file after that need to encode your string with utf8_encode() function. Please see the following code for an example: Hope this helps.
-
Hi Catalysis, I am afraid, the data you are providing to a logarithmic chart is incorrect. In logarithmic scale the data should not be greater than zero not equal to zero, since log of zero is infinity. So if you try again with value='0.01' the chart will come up without any error.
-
Callback and unreliable export to server functions
Rahul Kumar replied to johnnystinko's topic in FusionCharts and PHP
Hi Bill, I have gone through your link, but I could not log in with the given username and password. (Error we got: The access information you submitted was not found in our database. Please try again.) May be it is just due to 24 hrs lease time. If so, could you please re-activate this account and let us know. Also, please mail your responce at [email protected], so that I can get your mail immediately when you have done. -
need help with adding mysql data using php class.
Rahul Kumar replied to veerugadde's topic in FusionCharts and PHP
Hi veerugadde, Could you please show us the results of your SQL query in tabular format, because it seems that it is returing more than one row. And if this is the case then chart will show the repeated numbers of data for all columns (Totalmarks, English, Maths, Science). So you would need to change your sql query to get the desire result. However, a solution would be like this: -
How do I add Javascript onClick() handler to county maps?
Rahul Kumar replied to saptarshi's topic in Using FusionMaps XT
Hi TerryONolley, I am afraid, the color of the specific country/states can't be changed at run time as of now. To change the color you would need to pull the xml data again to the map from the server. But instead of reloading the complete page you can just reload the map data to change the color of specific country/states using setDataURL method, which works like AJAX. -
Hi Ramadevi Glad to know this worked. And here are the answers for your queries: 1. Currently the method you are using to export chart to image is depreciated, please refer to http://www.fusioncharts.com/docs/ >> Exporting as Image/PDF section to get more information on the same. 2. Chart has a method named getDataAsCSV() which returns the XML data, but does not set this data to the clipboard.
-
Hi, We have implemented a new image saving mechanism by which you can export chart to image or PDF either at client side at server side. And the following code renders the "FusionCharts Export Handler Component", which is necessary when you are using client side exporting: Also please refer to http://www.fusioncharts.com/docs/ >> Exporting as Image/PDF section to get more detail information on the same.
-
Hi Ramadevi, I am afraid, that is not the correct way to use registerWithJS parameter. Instead you would need to put this parameter in FCHTMLRenderer.jsp file. And you would need to put registerWithJS in movie parameter. Example: name="movie" value="/OA_HTML/eisrs/jsp/dashboard/FC/Column3D.swf?.......registerWithJS=1..."
-
Callback and unreliable export to server functions
Rahul Kumar replied to johnnystinko's topic in FusionCharts and PHP
Hi Bill, I have again gone through your link http://cis.cgaccess.com/cis.data.php?action=12&area1=Bradley&area2=Knox&area3=Davidson&area4=Shelby&chart=MSColumn3D And I found it is showing a confirmation box when an image is saved. Could you please let us know the problem? -
Callback and unreliable export to server functions
Rahul Kumar replied to johnnystinko's topic in FusionCharts and PHP
Hi Bill, Could you please try using the attached FCExporter.php file? There was an issue which was a new line character at the top of the FCExporter.php file. FCExporter.zip -
Callback and unreliable export to server functions
Rahul Kumar replied to johnnystinko's topic in FusionCharts and PHP
Hi Bill, We really apologize for the delay. I have gone through your links and it is showing some errors while FC_Exported is being called. And we need to see your FCExporter.php file, so that we can track the issue. Please attach the FCExporter.php file with your post. Waiting for your reply. -
Hi, Could you please try to render the chart using HTML <OBJECT> tag instead of rendering it through JavaScript.