Pallav

L1 Moderators
  • Content count

    2,385
  • Joined

  • Last visited

  • Days Won

    11

Everything posted by Pallav

  1. You can increase the chart left margin using: <chart chartLeftMargin='60' ..>
  2. I've added it to our wish list - though I'm not sure when we can add this one.
  3. 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.
  4. convert chart to bitmap image

    Hi, We've put it in our wish list for future versions.
  5. Chart Not Updating

    Just keep adding a timestamp at the end of each dataURL.
  6. 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).
  7. Export to JPEG

    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).
  8. Error control from javascript

    No - you'll need to modify the source code of FusionCharts (in Flash) to do so.
  9. legend colors not appearing

    You can try changing the font to Arial to fix it.
  10. FusionCharts DTD

    I'm afraid we do not have DTDs for FusionCharts XML.
  11. Coonector in DragNodePower chart

    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.
  12. saving images

    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).
  13. X-Axis as a logarithmic Scale

    Hi, I'm afraid FusionCharts doesn't support numeric x-axis as of now.
  14. Accented Character

    Hi, You need to use: - dataURL method - make sure that the XML is UTF-8 with proper BOM.
  15. You cannot do so in the 3D chart - however, the same is feasible in 2D chart.
  16. Can a label be made a link?

    You can make a data item clickable - but not label.
  17. onResize reaction

    Thanks a ton for this update.
  18. Oracle PL/SQL

    Can you try &value=27| Also, make sure that this page returns just this - and no HTML or even carriage returns.
  19. 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.
  20. >> 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.
  21. Do PowerMaps work with Flex V2.0.1 ?

    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.
  22. Drag Node Chart : Auto-Layout

    Hi, I'm afraid we do not support auto layout as of now.
  23. Multiple Number Scales

    I'm afraid you cannot scale the x-axis in FusionCharts, as it's non-numeric.
  24. I'm afraid you cannot track the click events in a grid. You can track events from clicks on pies - but not grid elements.
  25. Can you, for once, try setting link='functionname();'?