-
Content count
1,253 -
Joined
-
Last visited
-
Days Won
3
Everything posted by Rahul Kumar
-
Hi Ahmed, I am afraid, XML you are using is not valid, since you are using special character (&) which requires encoding (%26). Therefore you would need to convert all & to %26. We have also attached the Modified XML with this post please use this XML in your VBA script, the chart will work fine. data.xml
-
Hi, "POST data limits" settings can be found in PHP.ini [post_max_size].
-
Hi Hudson, We are glad it worked. Also to work in PHP with dynamically generated XML and UTF-8 characters please refer to our documentation http://www.fusioncharts.com/docs/Contents/SpChar.html .
-
Problem with saving chart as image.
Rahul Kumar replied to Krishna_Solanki's topic in FusionCharts and ASP.NET
Hi Krishna, Could you please use animation='0' in <chart...> element and try once? -
Hi Hudson, Also, please refer to http://www.fusioncharts.com/forum/FindPost8054.aspx . A sample of your XML (convert to UTF-8 with BOM) is attached, please check it. data.xml
-
Hi Mike, Could you please refer to our documentation at http://www.fusioncharts.com/docs >> Exporting as Image/PDF section?
-
Combination Charts with php and MySQL
Rahul Kumar replied to FusionCharts Support's topic in FusionCharts and PHP
Hi Emanuel, Could you please send us your code & the generated XML so that we might look into the issue. -
Combination Charts with php and MySQL
Rahul Kumar replied to FusionCharts Support's topic in FusionCharts and PHP
Hi John, Could you please refer to http://www.fusioncharts.com/docs >> FusionCharts PHP Class section, this will guide you how you can use FusionCharts PHP class to retrieve the data from database and generate the chart. Also, you can refer to [Package_Root]CodePHPClass folder to check the samples. -
Hi Mike, I am afraid, exportChart will not work in classic VB as of now. Since exportChart has some complex mechanism which is only supported by FusionCharts Export component and export component JavaScript handler.
-
Hi, Could you please use myChart.addParam('wmode', 'opaque'); code in JavaScript and try again. Example: [script type=text/javascript] var myChart = new FusionCharts("../../FusionCharts/Column2D.swf", "myChartId", "500", "300", "0", "1"); myChart.setDataURL("SimpleExample.xml"); myChart.addParam('wmode', 'opaque'); myChart.render("chartdiv"); [/script]
-
Hi Deepti, We are glad to say that with FusionCharts you could do the things that you mentioned. Also, for the issue i.e. "in my chart, the hyperlink icon appears when the cursor is placed on any of the bars.": we need to check your XML for that. So could you please attach a sample XML with you post?
-
Hi Deepti, You could use anchor tag to call any JavaScript function and in that JavaScript function you can update another chart Or write your code to do what you need. In the previous sample I am calling a JavaScript function with a single parameter using Anchor tag, you could see the XML (xdata.xml) and HTML (Anchor_Test.html) code to know how it works. Also please let us know what exactly do you want to do with the Drilldown?
-
Need to call js function on entire chart.
Rahul Kumar replied to anila's topic in FusionCharts and JSP
Hi Anila, Could you please make sure that you are using the updated version of charts? The J- feature is supported in version 3.0.7 and later. -
Need to call js function on entire chart.
Rahul Kumar replied to anila's topic in FusionCharts and JSP
Hi Anila, Could you please post your code for your JS function 'download' ? Also please attached the HTML Generated code of your JSP page (by going to View Source of the page). -
Need to call js function on entire chart.
Rahul Kumar replied to anila's topic in FusionCharts and JSP
Hi Anila 2nd Method: Please use the following code and try again? String chartXML1 = "<CHART clickURL='j-download-DwnNPS,4' showvalues='0' shownames='1' legendBorderAlpha='0' yAxisName='NPS' legendPosition='RIGHT' useRoundEdges='1' baseFont='Ge Inspira' slantLabels='1' labelDisplay='Rotate' connectNullData='1'>"; and later in you JavaScript, you would need to split the parameter using delimiter as , (comma). Also please make sure that you have set registerWithJS parameter to true. -
Hi Deepti, We have attached a sample which show you how to achieve the same using Anchor tag. The attached sample is just a plain HTML file with the XML that you needed. You would just need to modify your XML accordingly by referring the sample XML. Anchor_Sample.zip
-
console appliacation for Server side image saving
Rahul Kumar replied to Rahul Kumar's topic in FusionCharts and ASP.NET
Hi, We hope you received our reply through mail. -
Hi Webguy, Could you please confirm once whether you have checked the above in your testing server or in "live production server"?
-
Hi Webguy, Thanks for your code. Could you please make sure whether "Enable Session State" is checked (enable) in your IIS server or not. For more information please refer to the attached image: Hope this helps.
-
I can't see the any export format when right click the mouse
Rahul Kumar replied to maks's topic in Javascript Problems
Hi Maksuda, Could you please make sure that you are using latest version of Bar2D chart (To get the version you would need to render the chart in debug mode)? And I am afraid Grid chart do not support "Exporting as image" feature as of now. -
How to Integrate Excel and Fusion Charts
Rahul Kumar replied to fluoronator's topic in General usage
Hi Yago, You would need to write the VBA code which will generate the data from the excel sheet draw the chart. -
Hi Is this a limitation of flash/browser then? I understand this is a lot for a browser to process. >>>>> Yes, you are right. I also have the FusionWidget license, do you know if using the small Spark Charts would be any better? >>>>> Yes, it will give more stable result since it takes less memory. BTW i noticed that my php package includes a FCExporter_IMG.php file. wont this handle the export? if so, i can export and save on the server. if the image is located on the server, i could display the image, if not, i could render the chart. will that file work? >>>>> FCExporter_IMG.php can be used to save the chart image file in server, But you would need to render the chart.
-
Hi montegobay64, Could you first please close the <set....> element tag like <set ..../> and try again?
-
Hi Nor_jk, 1. Yes, you can save the chart on the server but need to render the chart once. And please refer to http://www.fusioncharts.com/docs/ >> Server-side exporting >> Saving to server disk section for more information. 2. To automate the process of creating the PPT file with the generated image you could refer to the attached VB Script file. To execute the VB Script file just double click on the file name, but please remember to set the image path and output PPT file path in the source code. PPT.zip
-
FusionCharts Unable to Process Arguments Beyond First & - Blocker, Critital Bug
Rahul Kumar replied to Rahul Kumar's topic in Javascript Problems
Hi Rjurney, Could you please replace all & (Ampersand) with %26 and try again?