-
Content count
2,097 -
Joined
-
Last visited
-
Days Won
12
Everything posted by FusionCharts Support
-
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.
-
' and %26apos; not working in pie3d
FusionCharts Support replied to vnaresh_kumar's topic in FusionCharts and ASP.NET
Hi, Could you please send us the XML that you are using? -
showing regions or city of a map
FusionCharts Support replied to chakik's topic in Using FusionMaps XT
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. -
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.
-
Using FusionCharts to produce PDF/Word documents
FusionCharts Support replied to telnin's topic in FusionCharts and JSP
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. -
Unable to navigate away while chart is loading
FusionCharts Support replied to twism113's topic in General usage
Hi, Could you please try removing/deleting the chart DOM elements from HTML before unloading page? -
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 ?
-
Hi, You can get the code of the demo if you send a request to [email protected]
-
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.
-
chart less data or group them
FusionCharts Support replied to FusionCharts Support's topic in FusionCharts and ASP.NET
Hi, Could you please let us know (if possible viaually in a dummy chart) how would you like to show the grouping? -
Change font colors in a dataset
FusionCharts Support replied to FusionCharts Support's topic in FusionCharts and ASP.NET
Hi, I am afraid, this is not possible as of now. -
querystring args trimmed from setDataURL()
FusionCharts Support replied to dkorz's topic in General usage
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 -
IE8 DataURL error with > 10 charts on a page
FusionCharts Support replied to nlaslett's topic in Bug Reports
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"); -
Multi-line tool tip 'tooltext'
FusionCharts Support replied to Rahul Kumar's topic in FusionCharts and ASP.NET
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. -
Exporting or Printing from Standalone Flash Application
FusionCharts Support replied to Dlyttle's topic in General usage
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. -
Exporting or Printing from Standalone Flash Application
FusionCharts Support replied to Dlyttle's topic in General usage
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. -
How to do server side export on Coldfusion 8
FusionCharts Support replied to FusionCharts Support's topic in FusionCharts and JSP
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. -
Problem with Fusion Charts in iFrames
FusionCharts Support replied to deeptic's topic in Miscellaneous
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); -
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">
-
Problem with Fusion Charts in iFrames
FusionCharts Support replied to deeptic's topic in Miscellaneous
Hi, Please also make your charts to transparent or opaque mode. Currently I suspect these are in window (default) mode. -
Problem with Fusion Charts in iFrames
FusionCharts Support replied to deeptic's topic in Miscellaneous
hi, Could you please send us the that you are using? -
Combo Chart - specify Bar or Line?
FusionCharts Support replied to FusionCharts Support's topic in General usage
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. -
Combining Display Text and Database values
FusionCharts Support replied to FusionCharts Support's topic in Using FusionWidgets XT
Hi, You would need to programatically combine both in the displayValue attribute. -
Combination 3D Bar / Line Dual Y Chart - How do you define dataset as bar or line?
FusionCharts Support replied to djfiii's topic in FusionCharts and ASP
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. -
Change Alternate Color bands in MS 3d column chart
FusionCharts Support replied to FusionCharts Support's topic in Miscellaneous
Hi, Yes, not with 3D charts.