Pallav

L1 Moderators
  • Content count

    2,385
  • Joined

  • Last visited

  • Days Won

    11

Everything posted by Pallav

  1. Hi, Could you just try running it from a server, instead of local file system? At times, IE + Flash security settings prevent JS from running on local file system.
  2. Rendering Graph

    Hi Tom, Is there a live link which you could share to help us debug this?
  3. Hi, The zoom function is not natively supported by FusionCharts - it's a feature of Flash Player, which directly scales the movie, instead of programatically zooming it. As such, this behavior is browser dependent and can cause some mismatches.
  4. Hi, In FusionGadgets line chart (www.fusioncharts.com/gadgets), we've an interactive legend component, which can show/hide a particular dataset as chosen by user.
  5. Language translation

    Hi, Would you like the documentation in Spanish, or the product to support Spanish language?
  6. Hi, The parameters for the grid are passed using FlashVars and not in XML, as explained at http://www.fusioncharts.com/docs/Contents/Grid_Usage.html
  7. Hi, On which chart SWF do you want it? And do you want the % or not?
  8. Self Links

    Hi, I'm not sure if I've understood self links. Can you please elaborate?
  9. You can just set yAxisMaxValue to such a value that the chart always has space on the top.
  10. A few idea's

    Hi, Thanks for your suggestions. We'll definitely consider these for our future releases.
  11. Chart Stacking

    They work only in FusionGadgets chart - not FusionCharts, as of now.
  12. help me please help me

    If you download the FusionCharts v3 evaluation, it's in the code folder.
  13. Export to JPEG

    Hi, It's atleast 8-10 months away.
  14. Printing broken in Safara and Firefox

    Hi, Just do this (only if you've the .fla files): - Open the .fla file. - Change the chart size to your intended size (in the tool bar) - Recompile
  15. Problem Drawing objects on dragnode

    Hi, The objects are initially draw centered to the given position. As such, it draws at 0,0 center.
  16. please help

    So do you actually want to display 2 records or just 1?
  17. Looking for specific chart

    We have a combination of area with line with dual series and axis - but not spline.
  18. Chart Stacking

    Hi, This option is present in the real time stacked column chart from FusionGadgets suite (www.fusioncharts.com/gadgets) where you can fix the distance between the canvas margins.
  19. Yes - you could just set [chart scrollToEnd='1' ..]
  20. Help... Chart render error....sometimes

    Hi, Please make sure that: 1. You're using FusionCharts JavaScript class to embed the charts. 2. You're not specifying the chart width and height in %, but in pixels (and without appending px at the end of numeric values).
  21. Steve, Since the Gantt chart works on actual date/time values, you cannot skip months in between. The only option would be to provide empty labels for them - which could indicate that you do not want them to be interpreted on the chart.
  22. Export to JPEG

    >>> This is great! Nice work. Is there a way to call that "save to image" function from javascript? I'm afraid you cannot do this as of now.
  23. Export to JPEG

    Hi, Thanks for your suggestion. We had prototyped with LZW compression too. However, since Flash 8 doesn't support byte data type natively, we had to send bytes as chr(byte's decimal value) characters, which tend to be UTF-8 characters after the initial ASCII 256 characters. Now, at server side, this was getting platform specific, as PHP and ASP.NET didn't convert it back to the original format. As such, we had to resort to RLE encoding, which does provide a lot of compression (from 2MB of data to 300KB), is more processor efficient than LZW (at least in case of Flash), but the compression factor is higher. In Flash 9, this can be easily done, as ByteArray is supported and GZip compression is natively supported. As such, we expect to provide a better way to do this in FusionCharts v4.
  24. Improved Export Functionality

    Hi, Thanks for your suggestion. We had prototyped with LZW compression too. However, since Flash 8 doesn't support byte data type natively, we had to send bytes as chr(byte's decimal value) characters, which tend to be UTF-8 characters after the initial ASCII 256 characters. Now, at server side, this was getting platform specific, as PHP and ASP.NET didn't convert it back to the original format. As such, we had to resort to RLE encoding, which does provide a lot of compression (from 2MB of data to 300KB), is more processor efficient than LZW (at least in case of Flash), but the compression factor is higher. In Flash 9, this can be easily done, as ByteArray is supported and GZip compression is natively supported. As such, we expect to provide a better way to do this in FusionCharts v4.
  25. Nirav, I'm afraid you cannot do this formatting without changing the source code.