-
Content count
2,385 -
Joined
-
Last visited
-
Days Won
11
Everything posted by Pallav
-
You can increase the chart left margin using: <chart chartLeftMargin='60' ..>
-
I've added it to our wish list - though I'm not sure when we can add this one.
-
"Object doesn't support this property or method" while trying to use setDataUrl in IE6
Pallav replied to Centyz's topic in Bug Reports
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, We've put it in our wish list for future versions.
-
Just keep adding a timestamp at the end of each dataURL.
-
OK no javascript works with this chart software
Pallav replied to Pallav's topic in Javascript Problems
Just make sure that you're not running the charts from local file system. Instead run it from behind a server (even localhost would do). -
FusionCharts is rendered on the client side using Adobe Flash Player. Essentially, FusionCharts is a set of .swf files, which when requested by the users, downloads on his/her machine, reads the XML data and then plots the chart. Owing to limitation of Flash Player itself, which doesnt allow saving the end output of the chart as image, FusionCharts too is bounded by the same limitations. As such, you cannot directly save the charts as bitmap/image/PDF. Indirect ways of saving chart image are: - You can third party tools like www.flashcapture.com to take one-click screenshots of the generated charts and then use it. - You can use PDF Print drivers like www.pdf995.com to save the chart as PDF (by capturing it from Print Stream of your Operating System).
-
No - you'll need to modify the source code of FusionCharts (in Flash) to do so.
-
You can try changing the font to Arial to fix it.
-
I'm afraid we do not have DTDs for FusionCharts XML.
-
Hi, If the nodes are placed vertically, the connectors would look as it they're meeting the node in between. However, if you drag node C, you'll see that it's directly connected to Node A. As for the link, the node can either be drag-able or linked.
-
FusionCharts is rendered on the client side using Adobe Flash Player. Essentially, FusionCharts is a set of .swf files, which when requested by the users, downloads on his/her machine, reads the XML data and then plots the chart. Owing to limitation of Flash Player itself, which doesnt allow saving the end output of the chart as image, FusionCharts too is bounded by the same limitations. As such, you cannot directly save the charts as bitmap/image/PDF. Indirect ways of saving chart image are: - You can third party tools like www.flashcapture.com to take one-click screenshots of the generated charts and then use it. - You can use PDF Print drivers like www.pdf995.com to save the chart as PDF (by capturing it from Print Stream of your Operating System).
-
Hi, I'm afraid FusionCharts doesn't support numeric x-axis as of now.
-
Hi, You need to use: - dataURL method - make sure that the XML is UTF-8 with proper BOM.
-
Do units for line always have to be on SYAxis? (MSColumn3DLineDY.swf)
Pallav replied to Pallav's topic in General usage
You cannot do so in the 3D chart - however, the same is feasible in 2D chart. -
You can make a data item clickable - but not label.
-
Thanks a ton for this update.
-
Can you try &value=27| Also, make sure that this page returns just this - and no HTML or even carriage returns.
-
Retrieve chart's XML post-render using Javascript?
Pallav replied to Pallav's topic in General usage
I'm afraid it's not possible in the standard charts. Only in charts which allow the user to interact with the data we have provided this functionality. -
>> What I want to know is, is it possible to display something other than this short name (e.g. could I display a number in there instead if I had total sales figures) Yes - you can do this. Please see http://www.fusioncharts.com/PMDocs/Contents/CustomLabels.html >> When I click on France, is it possbible to then display the PowerMaps map of France, so that I could display more regional information in there? Yes - you can use the drill down feature of PowerMaps to do so. >> When I go into France, can I then set up the map the way I want to display it? So for example, I want to pick the biggest 10 cities, can I place them with X and Y co-ordinates on this map of France? I'm afraid this isn't possible.
-
Hi, I'm afraid you cannot use PowerMaps with Flex directly, even though PowerMaps is made in Flash 8 itself. >> Also, would I be able to set regional colours via Flex, on ther PowerMap dynamically ? You can set regional colors using the XML API of PowerMaps. >> Additionally, does PowerMap provide any kind of callback/event when a user clicks on a map region - so that I could detect this in the Flex code and act accordingly ? We do provide callback handlers - but I'm not sure how this can be integrated with Flex. >> In addition, can the background image for the maps be changed dynamically ? Yes. >> If this cannot be embedded easily in to Flex, could it be embedded in to a Flash 'wrapper' application which could control the look/feel of the map - and which in turn could be embedded in to the Flex ? You can try this - we have direct APIs to load PowerMaps in other Flash files.
-
Hi, I'm afraid we do not support auto layout as of now.
-
I'm afraid you cannot scale the x-axis in FusionCharts, as it's non-numeric.
-
Pie chart with Grid component: link Grid click to Pie slice-out?
Pallav replied to nickpdx's topic in General usage
I'm afraid you cannot track the click events in a grid. You can track events from clicks on pies - but not grid elements. -
javascript function to load a dynamically created web page
Pallav replied to Pallav's topic in Javascript Problems
Can you, for once, try setting link='functionname();'?
