FusionCharts Support

Members
  • Content count

    2,097
  • Joined

  • Last visited

  • Days Won

    12

Everything posted by FusionCharts Support

  1. exportCallback won't fire

    Hi, I am afraid, on error like this the callback event wont file.
  2. Easier way to embed fusionchart into page

    Hi, To be more accurate you would need to pass lot more things to the flashVars <object type="application/x-shockwave-flash" data="/static/charts/Pie3D.swf" width="800" height="400" id="myChartId"> <param name="FlashVars" value="&dataXML=[%put XML here%]&registerWithJS=1&DOMId=myChartId&chartWidth=800&chartHeight=400&debugMode=0" /> <param name="movie" value="/static/charts/Pie3D.swf" /> <param name="wmode" value="transparent" /> </object>
  3. Q: Exporting all charts on screen with just one click

    Hi, I am afraid, due to some security issues this can not be done as of now using One click.
  4. Missing hash marks / banding on Drag Line chart

    Hi, Could you please try once using adjustDiv='0'?
  5. On DataLoadError do not render chart

    Hi, Without loading the chart the data load error event would not be raised. Catch 22!:-)
  6. "save as image" not available with upgrade to Version 3.1

    Hi, Since 3.1 we have upgraded the save as image into an advanced feature called export. You can still achieve what you had been achieving earlier. All you need to do is to point the image save url to the new export handler file instead of FusionChartsSave . The export handler is provided in 3.1 or later peaks.
  7. two or more charts in same page, help needed.

    Hi, This actually depends technically where you are calling the dataURL a) while updating an existing chart or while removing an existing the chart and creating a new JavaScript instance of the chart all from scratch. for a) you can use ' but for you need to use %25apos; (i.e. URL Encoded ' ). It could be because, all chart settings like dataURL, regirsterWithJS, debugMode, chartWidth, chartHeight are passed as a querystring of Flash player's FlashVars parameter. & in " acts a querystring variable separator and do not act a QUOTE.
  8. Using Grid

    Hi, If you are takling about our SS Grid, you just need to pass the SWF file for the Grid and pass the XML ( of single serries chart) .. and thats it!
  9. two or more charts in same page, help needed.

    Hi, If you go deeper into how the URL is passed to updateChart() , you will see that the string that is getting passed is not enveloped by a quote (") or apostrope ('). So JavaScript woudl take the wholestring as a variable! explaination: when you call updateChart("thisIsAString") "thisIsAString" constant/value passed to the function's parameter variable $dataURL. But, when you call updateChart(thisIsAString) JavaScript expects thisIsAString as a vairable adn searches for its value ...it is found "undefined" and hence "undefined" is passed to the function's parameter variable $dataURL. Solution: Envelop the string within quotes/apostrophe. link='updateChart("". $dataURL ."")'/>"; or link='updateChart('". $dataURL ."')'/>"; or link='updateChart("". $dataURL ."")'/>";
  10. FusionMaps Specification Sheet of 185 maps in CSV files

    Hi, I am afraid we do not have marker converted to csv. We are working on this and would pass it on to you once we are done. :-)
  11. exportCallback won't fire

    Hi, Could you please also sniff the response from the server? Please let us know the server side script that you are using.
  12. FusionChart and Funnel chart

    Hi, Welcome to FusionCharts family and forum. I am afraid, funnel chart is present in FusionWidget pack and you would need to buy it to use it.
  13. two or more charts in same page, help needed.

    Hi, could you please try using unescapelinks='0'?
  14. Problem wit IE8 and Javascript Fusioncharts

    Hi, Yes, that is eaxctly what i meant by "passing unique (every time unique) querystring values to all the URL ". myChart.setDataURL("FUELUSAGE.xml&nocache="+ new Date().valueOf() );
  15. two or more charts in same page, help needed.

    Hi, Could you please try once URLEncoding the URL before passing.
  16. FusionWidgets AngularGuage using with Extjs and binding to a store

    Hi, Please find http://demos.theactivegroup.com/?demo=charts&script=fusion# which implements FusionCharts. You can always use the same API for FusionWidgets. Just need to chanege the SWF file name as provide correct XML for the gauge/widget/chart.
  17. Problem wit IE8 and Javascript Fusioncharts

    Hi, can you please try once passing unique (every time unique) querystring values to all the URL that is getting loaded in the Web Browser Control?
  18. FusionMaps Specification Sheet of 185 maps in CSV files

    Hi, Please find attached all the map Specification Sheets (in CSV) for all map in all our 3 packs: The zip file contains three folders: 1. Core_pack ( 314 files ) 2. Europe_pack ( 88 files ) 3. AmericaIndia_pack ( 134 files ) Also find the BosniaHerzegovina and Zacatecas map's CSV files attached files. FCMap_Zacatecas.zip FCMap_BosniaHerzegovina.zip Map_Specification_csv_30Oct2009.zip
  19. Error to export charts in JPG

    Hi, Could you please see in PHP.ini with a directive post_max_size ? Also, memory_limit should be more than post_max_size. Meanwhile, if you can send us a live URL and let us know the server OS and PHP version used we would be glad to test it from our side.
  20. Export chart to JPG then throw it into PDF

    Hi, Could you please take these steps? 1. create an array containing DOMId s of all charts present in the page. 2. in FC_Rendered set a flag for each id so that you can check whether all charts have been loaded. 3. Make a HTML element with click event where you iterate through the array and use the exportChart() function called to each chart present in the page/array.
  21. Data URL not passing all arguments to XML Request

    Hi, Please try once url encoding the whole dataurl before passing it to the chart. In java script you can use escape function.
  22. Hi, I am afraid, there is no JavaScript snippet available as of now.
  23. Hi, There is no native support for this but you can do this by updating the map XML again and again on mousehover on the links. STEPS: 1 .When the mouse hovers over a link get the XML from map (store is as backup ) 2 .Modify XML to set that entity's color to hover color 3. Set this new XML to the map using setDataXML 4. on mouse out set the backup XML stored to the map to restore the originality of the map * This might be process hungry.
  24. Error to export charts in JPG

    Hi, Could you please make sure you have proper setting for POST data limits in the server. The data posted to the export component can turn huge.
  25. Blueprint Application wont run on Windows 2008/IIS7

    Hi, We apologize for the dalay . This seems to be a data connection issue in ASP. There are some feedbacks that we have gathered from other database connectivity forums: