FusionCharts Support

Members
  • Content count

    2,097
  • Joined

  • Last visited

  • Days Won

    12

Everything posted by FusionCharts Support

  1. Map callbacks do not work after loading 2nd map.

    This issue is taken care by the latest FusionMaps.js
  2. Removing X axis labels

    Hi, Please use showLabels='0'.
  3. Images As Label In Trend Lines

    Hi, I am afraid no.
  4. Export Images Taking Time To Save

    Hi, You seem to be saving to server side location. For this you do not need Flash Player global settings or Flash Player 10. Please try once calling the handler from browser to see if it's working. Also make sure you have GD installed.
  5. Waiting... Waiting.. Waiting. Save!

    Hi, is not possible as of now. for [A] You can render the export component after the chart completes data capturing. You can render it using HTML and CSS over the chart itself using various GUI frameworks like jQuery, ExtJS etc or your own code. Please check: http://www.fusioncharts.com/Demos/ExportChart/Contents/client_export.html This sample contains the export-component getting rendered after FC_ExportReady(DOMId) event is raised. You can also remove the export component after you save the file/cancel saving in the Save dialog box. This can be done as you an capture FC_Exported event. Please use the latest FCExport.swf that comes with FusionCharts v3.2 release.
  6. Dataurl Bug Using Sparkline.swf And Sparkcolumn.swf

    Hi, Could you please check out the latest release FusionCharts v3.2.1 having FusionCharts.js version as 3.2.1 too? This issue is resolved in this release.
  7. Legen Interactivity

    Hi, I am afraid, we do not have this feature, as of now.
  8. Small Chart

    Hi, You need to add some tweaks in the XML using chart margin attributes, font size, padding etc. Please check: <chart labelDisplay="WRAP" NumberSuffix="%" caption="" yAxisMaxValue="100" bgColor="FFFFFF" chartTopMargin='0' chartTopMargin='0'chartRightMargin='0' chartLeftMargin='-6' chartBottomMargin='-3' showBorder='1' labelPadding='0' YaxisValuesPadding='0' baseFontSize='9'> <set label="YES" value="33"/> <set label="NO" value="67"/> </chart>
  9. Canvas Height

    Hi, I am afraid, not as of now.
  10. Greek Encoding Issue

    Hi, Could you please try once usig UTF-8 encoding. Also please add BOM mark to your XML. c.f., http://www.fusioncharts.com/docs/?SpChar.html
  11. Better Image Quality When Exporting?

    Hi, FusionCharts exports in 72dpi. As of now we can not export to a higher resolution. You can try setting a bigger size and use it. Since you are working with PowerPoint let me take the opportunity to let you know that we have a separate product called oomfo which helps you use FusionCharts (either as animated interactive charts or as image) in you PowerPoint presentations. You can download and check out for free from http://www.oomfo.com.
  12. Interactivelegend Not Interacting With Php-Created Fusionchart

    Hi, Could you please check from our Online gallery and let us know? Please check: http://www.fusioncharts.com/Gallery/Chart.asp?scrollstackedcolumn2d_1
  13. Hi, Could you please try using setDataURL() instead of setXMLUrl() as you are using PowerCharts v3.1.1 or lower which are not optimized to use the latest FusionCharts.js which was released with FusionCharts v3.2 release. We would release PowerCharts v3.2 (which will support this) in a month's time.
  14. Trendline Label Color

    Hi, You can customize the color of the line along with the text label using color attribute in <line> element. Please see: http://www.fusioncharts.com/docs/?AttDesc/Trend.html Additionally, to set font size to the label please define and apply a FONT style on TRNENDLINES Object. Example below: <styles> <definition> <style name='MyTrendlineFont' type='font' font='Verdana' size='15' /> </definition> <application> <apply toObject='TRENDLINES' styles='MyTrendlineFont' /> </application> </styles> Please note that you can not set color using FONT Style.
  15. Display Horizontal Bar Chart

    Hi, Thanks for your interest in FusionCharts. Each of FusionCharts is a swf file that you need to select and load with you data as XML or JSON. Hence, You need to use Bar2D.swf, MSBar2D.swf, MSBar3D.swf for horizontal bar charts. You can also use Column2D.swf, MSColumn2D.swf, Column3D.swf, MSColumn3D.swf for vertical bar charts. For all kinds of charts please refer to our Gallery : http://www.fusioncharts.com/Gallery You can get details of how to implement any of these charts from our Online Documentation. Sections to read: * Creating your first chart * Using XML or JSON as data source * Chart XML API of the chart which you choose, e.g., Column 2D chart.
  16. Fusion Charts Sharepoint Moss 2007

    Hi, Thanks for your interest in FusionCharts for Shareporint. We are working on the Documentation and will let you know once we publish it.
  17. PHP and customObjects

    FusionCharts now provides wrapper functions in PHP (renderChart/renderChartHTML) which can be effectly be used in this scenario. These are defined in FusionCharts.php present in the pack.
  18. Fusion Chart Vs XML Data

    This issue has been resolved in latest FusionCharts pack. This was actually an issue with the data being passed as a string using GET method where the size of the get URL was limited for some browsers.
  19. StCol2DLineDY population from mySql

    Hi, This Dual Y chart does not have a right stack. The stacked chart is at the left as primary and lines can be created on the secondary or left axis. You can add an array of dataset settings where for the last two datasets you need to set parentYAxis=s
  20. Chart not showing on server...again

    If you are using II7, it might be that the file needs permission before it gets accessible. Pleas also check mime settings and if needed add swf mime type.
  21. sedDataURL on hidden charts

    Please use FusionCharts v3.2 where this has been taken care. Reference: http://www.fusioncharts.com/code/JavaScript/Basics/Tabs/tab.html
  22. Passing Xml as Object from JAva to Fusion chart

    This has been taken care in FusionCharts for Flex 1.2.
  23. Hi, We are soon going to release Public beta of FusionCharts for Sharepoint. Please check demo video from : http://www.fusioncharts.com/sharepoint/ Highlights: FusionCharts for Sharepoint would have majority of charts from FusionCharts v3.2 pack as well some charts from PowerCharts and FusionWidgets pack. It would have a GUI for easy chart configuration. This component can connect to SharepointList, MSSQL, Oracle, Excel service or CSV data. Though Flash based, it would support JavaScript fallback chart for iPad too. There are lot more features that are going to wow your Sharepoint reports....will keep updating..
  24. Link Max Character Size(link attribute)

    There was a limitation of certain browsers for the LINK if the link is a http request with GET method. This was around 2000 characters. In modern browsers this limitation is not present.
  25. problem saving chart in php usage client side

    For saving most probably the export component is not defined or its id is not used in the chart's XML. You need to add BOM Stamp to the XML or the Chart containing page to support extended or UTF-8 characters.