-
Content count
2,097 -
Joined
-
Last visited
-
Days Won
12
Everything posted by FusionCharts Support
-
Hi Bill, I have been earnestly trying to replicate the issue but failed. Could you please let us know, which Operating and Flash Plaer you are tesing this. Could you please also let us know if you are using some JavaScript framework. Also if you are using any scale mode or specified any font.
-
Hi all, Please find the ASP.NET 1.1 ExportHandler code which might help you deploying export feature in your ASP.NET 1.1 server. Exporthandler_ASPNET11.zip
-
Pointers on top AND bottom of the linear guage chart
FusionCharts Support replied to Todd88's topic in Using FusionWidgets XT
Hi, Could you please try once updating to latest chart ? http://www.fusioncharts.com/PUC? This feature is supported since version v3.1 of FusionCharts. -
Update chart automatically every minute?
FusionCharts Support replied to pimlinders's topic in FusionCharts and PHP
Hi, If you are using FusionCharts v3 you can do it just using setInterval without any 3rd party AJAX or native AJAX code. FusionCharts v3 has inbuilt AJAX support. Only you would need to specify the php page's URL which is generating the XML to charts's setDataURL() function. Thats it! so, now your updateCharts() function will have a changed line : getChartFromId('myChartid').setDataXML(YourPHPScriptURL); Here, instead of 'myChartid' place your chart ID and pass your PHP URL. The chart will load the XML form the PHP file and would redraw. No page refresh! -
Happy to help. Thanks
-
Hi, Could you please send us a scaled down version of the project that you are using to help us debug faster?
-
Hi, I can feel your plight. There must be something in your code please check the code is working in any case in in our labs.
-
Hi, I our lab, things are working fine. What I would suggest is to debug what you are getting in the argument. For the time being comment all code that calls up drillDown function. First see what argument you are getting in sEventArguments. 1. Add this line: 2. Next if you are sure that you are getting correct values pass on to next step. Otherwize please check what exactly is being passed in __doPostback() string[] args = sEventArguments.Split('$'); This would show you exactly what is being split. 3. Are you still using this condition? if (sEventArguments.StartsWith("drillDown"))You can also try with if (args[0].Equals("drillDown"))Please feed us back.
-
Hi, Weird! We would look into it!
-
Javascript not working for Drill Down Map
FusionCharts Support replied to FusionCharts Support's topic in Using FusionMaps XT
Hi, Please see whether you have used registerWithJS while rendering the map. -
Hi, Can try with the following code? ALGO: 1. import classes required for chart 2. Create XML object 3. use XML.load() to load XML from external file 4. **IMPORTANT** create .onLoad event listner which would be called when the XML is completly loaded 5. Render the chart once the XML is Loaded
-
Hi, After lots of request to support vilne i have added support for vline. This is my own way of implementing vline though, and any suggestion and criticism is welcome. Please help me make it better. Here is the attachment. How to add vline? Single-series Charts? NOTE: To create an empty vline just use { vline:null } To set vline properties add all the properties as a new list of properties like : { vline : { color : "ff0000", linePosition : "0" } }, Multi-series charts? FC_UsingJSONData_VlineFix.zip
-
Save as image/pdf/png/jpeg working fine on Firefox but not on IE
FusionCharts Support replied to aman0711's topic in FusionCharts and JSP
Hi, Could you please try once 'saving' the image to a server space? Please let us know the IE version and please check if you are having any download plugins installed which might be hindering the download. -
help multiserie chart with php mysql
FusionCharts Support replied to FusionCharts Support's topic in FusionCharts and PHP
Hi, For multiseries charts you would need to build the XML which is different from XML structure of single series charts. Where as single series charts has XML format like this: <chart> <set value='...' label='...'/> <set value='...' label='...'/> <set value='...' label='...'/> </chart> The XML structure of Multiseries chart is like this: <chart> <categories> <category label='...'/> <category label='...'/> <category label='...'/> </categories> <dataset seriesName='...'> <set value='...' /> <set value='...' /> <set value='...' /> </dataset> <dataset seriesName='...'> <set value='...' /> <set value='...' /> <set value='...' /> </dataset> </chart> -
error of call from HtmlUnit2.5 for export img
FusionCharts Support replied to smhx's topic in Javascript Problems
Hi, We have not tested with HTMLUNIT as of now. One this we need to make sure whether the chart is actually getting rendered at first place. Could you please check whether the chart is calling up FC_Rendered() function when it finishes rendering. You would need to add a JS function FC_Rendered and trace this function. -
Really a problem with a javascript drill through
FusionCharts Support replied to cheua's topic in Javascript Problems
Hi, Could you please try running from a web server ? (local or live) In case you do not have a web server, you would need to set up Flash Player Global Security settings (once and for all). please read : http://www.fusioncharts.com/forum/Topic5009-47-1.aspx#bm8077 -
Hi, Please note that the XML files or any HTML/Web Application file that would hold XML as string need to have the BOM stamp. Could you please try with the latest update of our chart.
-
hi, Hope these links might help you out. http://www.fusioncharts.com/docs http://www.fusioncharts.com/docs/Contents/CFM_BasicExample.html http://www.fusioncharts.com/docs/Contents/CFM_Array.html http://www.fusioncharts.com/docs/Contents/CFM_Form.html http://www.fusioncharts.com/docs/Contents/CFM_DB.html http://www.fusioncharts.com/docs/Contents/CFM_Drill.html http://www.fusioncharts.com/docs/Contents/CFM_JS_URL.html http://www.fusioncharts.com/docs/Contents/CFM_JS_XML.html
-
How can i use drill down chart in php array
FusionCharts Support replied to cancan97's topic in General usage
Hi, ClickURL attributes work in PHPClass too. Please make sure you are using v3 charts, as this feature is not available in FusionCharts vFREE version. Could you please right click on the browser (say, Internet Explorer ) and get the generate HTML from "View Source" menu option? This would give us the XML generated as well as other discrepancies that might be occurring. -
chartObj.setDataXML is not a function
FusionCharts Support replied to avernet's topic in Javascript Problems
Hi, Could you please see whether you have set the RegisterWithJS parameter to "1" ? -
Callback and unreliable export to server functions
FusionCharts Support replied to johnnystinko's topic in FusionCharts and PHP
Hi, You can send us at [email protected] -
Callback and unreliable export to server functions
FusionCharts Support replied to johnnystinko's topic in FusionCharts and PHP
Hi, Could you please make sure you have 'FCExporter_IMG.php' and 'FCExporter_PDF.php' in the 'Resources' folder? -
FusionCharts V3 Demo save as Image or PDF?
FusionCharts Support replied to a topic in FusionCharts and ASP.NET
Hi, FusionCharts allows you to export chart as image or PDF. Could you please visit http://www.fusioncharts.com/Demos/ExportChart/ to see how you can export to PDF? You can also download the code from : http://www.fusioncharts.com/Downloads/Demos/FusionCharts_ExportDemo.zip. Please make sure of the following: 1. You have Flash Player 10 installed . * This is required 2. You are using the latest version of FusionCharts (i.e. v3.1.1 - please update from http://www.fusioncharts.com/PUC) 3. Also you would need to set the Flash Player global security settings on of you are running the application from a local file system:Please read http://www.fusioncharts.com/forum/Topic5009-47-1.aspx#bm8077 Hope this helps and you need not use any thried party tool to export only the chart as PDF. -
Could i add label for some points in line chart?
FusionCharts Support replied to internet9's topic in XML Issue
Hi, Could you please try using displayValue='Your Custom Text' showValue='1' in <set> element? -
How to build a drill-down map and display code
FusionCharts Support replied to adampalmer's topic in Using FusionMaps XT
Hi, One way would be to : 1. Call a JavaScript function on clicking an entity 2. Pass the short name or entity id of the region. 3. Accordingly keep an array to store the map swf files realted to that ID or short name 4. show the code, Load that new map