FusionCharts Support

Members
  • Content count

    2,097
  • Joined

  • Last visited

  • Days Won

    12

Everything posted by FusionCharts Support

  1. County Entities

    Hi, Please go through the documenation (locally or live ) and browse through the pages in section : Map Specification Sheets >>USA & Counties. This section contains the specification sheets of all the state maps. Each sheet contains list of county-entity-ids of all counties of a state. e.g : for Alaska: http://www.fusioncharts.com/maps/docs/Contents/MapSS/Alaska.html You would not get the county ids of all counties for the USA map.
  2. ' and %26apos; not working in pie3d

    Hi, Could you please send us the XML that you are using?
  3. showing regions or city of a map

    Hi, I am afraid, this is not possible as of now. Our maps are not drawn to scale. To simulate a scale you can use a logoURL to put a scale image somewhere in the map.
  4. External Interfaces

    Hi, FusionCharts SWFs expose some function through external interface. You can get the values of graph data in CSV format using the existing getDataAsCSV() function. Please read from more exposed APIs: http://www.fusioncharts.com/docs/Contents/JS_API.html http://www.fusioncharts.com/docs/Contents/JS_Events.html http://www.fusioncharts.com/docs/Contents/JS_Overview.html Hope these APIs help. If you need to expose some other functions, you would need to edit the source and add functions as you wish.
  5. Using FusionCharts to produce PDF/Word documents

    Hi, As of now, what we can provide is a mechanism to build a PDF from a chart. That too, the chart would be exported as an image which would be put in a page in PDF. The page would have the same size as the chart itself. Our code is not helpig to add the chart in an existing PDF or existing region in a PDF or to compile text, image etc. contents in a PDF. For this you would need to export the chart as image, save in space in server and use some other thrid party PDF creating utility to build the full PDF containg the text contents, your images and chart images.
  6. Unable to navigate away while chart is loading

    Hi, Could you please try removing/deleting the chart DOM elements from HTML before unloading page?
  7. Labels aliased or blurry

    Hi, The charts do not support dynamic scaling as of now. So, once stretched, all the elements of a chart would be resized as rastarized objects if possible. Could you please try using the latest chart SWF files ?
  8. AJAX 'Zoom' Demo

    Hi, You can get the code of the demo if you send a request to [email protected]
  9. Dashboard export to PDF

    Hi, You would need to modify the server side export code to accept all the data and then keep on adding the iamges into your pdf.
  10. chart less data or group them

    Hi, Could you please let us know (if possible viaually in a dummy chart) how would you like to show the grouping?
  11. Change font colors in a dataset

    Hi, I am afraid, this is not possible as of now.
  12. querystring args trimmed from setDataURL()

    Hi, Could you please send us the dataURL that is invoked from the chart? You can see this from the Debug Window of the chart. http://www.fusioncharts.com/docs/Contents/Debug/window.html
  13. IE8 DataURL error with > 10 charts on a page

    Hi, It might be some caching issue. The browser might be caching the chart and is displaying it so fast that it does not ever get time to load the XML. Could you please try add a cache killing mechanism? var pieA = new FusionCharts("FusionCharts/Charts/Pie2D.swf?nocache="+ new Date().valueOf(), "chartAId", "350", "250", "0", "0");
  14. Multi-line tool tip 'tooltext'

    Hi, Could you please update to latest version 3.1.1? Since 3.1 the charts allows you to provide {br} in tooltexts which would be parsed as like break.
  15. Exporting or Printing from Standalone Flash Application

    Hi, You are building AS2 application where this is not possible. You need to create AS3 application. Please note that 1. The export feature (in standalone flash application) will ONLY work if you are having FusionCharts for FLEX swf files. These are different from normal FusionCharts SWF files. 2. You need to use FlashInterface http://flashextensions.com/products/flashinterface.php to connect to this Flex-dedicated SWF fies from your AS3 Application. These are the primary things that you need to do...before following the instructions that i have provided in the previsous post.
  16. Exporting or Printing from Standalone Flash Application

    Hi, Are you loading the charts from SWF files or creating the charts from .as class files? Since you are using Flash CS4, for export what you can do is: 1. Get the charts from FusionCharts for Flex package (www.fusioncharts.com/flex) which helps you to load FusionCharts (build in AS2) swf files to load in AS3 (AVM2) program. 2. Create the chart using AS3 3. Get the image data (snapshot) of the chart: code hint: bmp:BitmapData=new BitmapData(this.width,this.height,true); var matrix:Matrix = new Matrix(); bmp.draw(this, matrix); 4. Use some image encoder classes (many freely available) to encode the BitmapData object to a ByteArray containing the binary of an image format: jpg:JPEGEncoder=new JPEGEncoder(100); // 3rd party JPEGEncoder class imgData=jpg.encode(bmp); 5. Finally use flash.net.FileReference.save() to let the user download the exported format. ------------------------------------- To print please use the PrintManager class of AS3 and print the desired location. Hope this helps wishing you luck in finishing you project fast.
  17. How to do server side export on Coldfusion 8

    Hi, I am afraid, we have not yet porvided the coldfusion export handler for the latest export feature. We are working on this. Meanwhile, please see if you can use the JSP code to fulfill your job.
  18. Problem with Fusion Charts in iFrames

    Hi, Window Mode : The chart element reamins floating always above (top) of all HTML elements. Its in a different window process. Again the chart cant be set to acquire transparency in this mode. THe chart background would remain opaque always no matter what. Opaque Mode: Chart is NOT present in different window process. Intregrate as a normal HTML element. So HTML elements can come over charts. Transparent Mode : Like opaque Mode. + Prepares the chart to be set as transparent from chart's background settings. If you want to set chart to opaque mode from JavaScript please use: chartObj.setTransparent(false);
  19. drill down problem

    Hi, I find that you have produced a wrong <script type ..> decalaration in the code. It is : <script type="JavaScript"> it should be <script type="text/JavaScript">
  20. Problem with Fusion Charts in iFrames

    Hi, Please also make your charts to transparent or opaque mode. Currently I suspect these are in window (default) mode.
  21. Problem with Fusion Charts in iFrames

    hi, Could you please send us the that you are using?
  22. Combo Chart - specify Bar or Line?

    Hi, MSColumn3DLineDY chart sets all primary datasets to Columns and all seondary datasets to lines. If you wish to configure your own plot please use Combi 2D line DY chart.
  23. Combining Display Text and Database values

    Hi, You would need to programatically combine both in the displayValue attribute.
  24. Hi, MSColumn3DLineDY chart sets all primary datasets to Columns and all seondary datasets to lines. If you wish to configure your own plot please use Combi 2D line DY chart.
  25. Change Alternate Color bands in MS 3d column chart

    Hi, Yes, not with 3D charts.