-
Content count
2,385 -
Joined
-
Last visited
-
Days Won
11
Everything posted by Pallav
-
I'm afraid we do not support breaking of labels on a pie chart. However, you can opt to hide the labels on the pie chart and then use FusionCharts grid component to show it.
-
If you're getting an error that setDataURL/setDataXML is not a function of the chart object, please make sure of the following: 1. Please make sure that you're using FusionCharts v3 charts, as the JavaScript API was introduced in this version. To check whether you're using v3, just match your SWF name with the names listed at http://www.fusioncharts.com/Docs/Contents/ChartList.html 2. Please ensure that you've set registerWithJS flag to 1. For more information on how to do this, please see http://www.fusioncharts.com/Docs/Contents/JS_Overview.html. Basically, you need to set the last parameter in the following code to 1: var chart1 = new FusionCharts("FusionCharts/Column3D.swf", "chart1Id", "400", "300", "0", "1"); 3. Please make sure that you're not placing the chart inside a FORM element. When the chart is inside a FORM element, the browser cannot access the chart using DOM. 4. Please make sure that you're not calling the setDataURL/setDataXML method before the chart has loaded and rendered. You need to use FC_Rendered function of chart to track the loading of chart as explained at http://www.fusioncharts.com/Docs/Contents/JS_Overview.html. The page's body onLoad event would NOT work, as the chart starts loading after the body has finished loading. 5. Please make sure that you're NOT running the chart from local file system (C: , D:). Instead, run the chart from behind a server (localhost - IIS, Apache etc.). This is because the Flash Player security settings do not allow Chart to JavaScript interaction, unless otherwise specifically set.
-
Hi, All charts in v3.0.4 support round legend. The size of that character is determined by the size of your legend font.
-
Matt, Currently we do not support this. However, we might consider adding this in our futue releases.
-
It's already available at www.fusioncharts.com/gadgets
-
Yes - you can modify the relevant files (DragNodeChart.as in com/fusioncharts/core/charts) folder.
-
Hi, Currently FusionCharts doesn't support exporting of image from the charts.
-
Please see http://www.fusioncharts.com/docs/Contents/JS_setDataURL.html
-
Yes - you've % in your XML. Please encode them to %25 when using dataXML method. In dataURL method, you can directly use them.
-
In licensed version (not in User license though), it's in SourceCode/com/fusioncharts/helper/DefaultColors.as file.
-
Hi, It's one of core features of FusionCharts to help you reduce server load. Since FusionCharts is generated at client side, there's no load at all on the server. You can have any number of concurrent users, without having any impact on your server. There are lots of websites that get over a million hits a day and use FusionCharts in their home pages/such applications.
-
Hey, You can do it in a way similar to http://www.fusioncharts.com/docs/Contents/Flash_Rotated.html
-
I'm not sure what you mean by changing background. But another option for showing forecast data would be to use dashed lines.
-
Even the redraw is a re-load - as such the movie thinks that it has been loaded each time.
-
That's not a native feature. We've written some external JavaScript code and hooked it up with FusionCharts to achieve that effect. Yes - you can make it work on any chart, as long as your JavaScript code is right.
-
You can just color that section of line by applying color attribute for the <set> element: <set ... color='Hex Code' ...>
-
Try switching the debug mode of chart to on - that'll help you with the data identification process.
-
We do offer drill down on the charts - you just need to create the next level content page in your code.
-
Hi, Can you please send us an email at [email protected] - we'll check and send you an update.
-
I'm afraid the caching and re-drawing is all handled by the browser - as such you cannot control it in code.
-
I'm afraid that's not currently possible using FusionCharts.
-
Problem in Using JavaScript functions as links
Pallav replied to ashish_kushwaha's topic in Javascript Problems
Make sure you're not running from local file system. -
Can you please attach the full XML data document?
-
Embedding Fusion Chart in another Flash project
Pallav replied to itsjustme's topic in Miscellaneous
Richard, I'm afraid we do not let out source code in trial versions. However, if you can drop an email at [email protected] requesting for a single chart source code, we can do so. -
Please see the section www.fusioncharts.com/docs > Advanced Charting > Number Formatting