fcuser

Members
  • Content count

    9
  • Joined

  • Last visited

  • Days Won

    1

About fcuser

  • Rank
    Forum Newbie
  1. Thank you. sNumberPrefix was exactly what I was looking for - for the dual y chart. Thanks again.
  2. Hi I have gone through the v3 docs. I learnt that the <dataset> element most commonly can have the following attributes: seriesName color alpha ratio showValues dashed includeInLegend And then, there are the line attributes and the anchor attributes ( like, anchor sides, anchor radius ). Now my question is - is it possible to specify numberPrefix for a particular dataset? I have two datasets, one for amount and another for count. I want to show the prefix $ for the amount dataset. Is this possible? Thanks
  3. Client-side Export

    Hi I would like to know what are all the settings/pre-requisites/files needed for using the client-side export feature. 1. what is the Flash player minimum version needed, if any 2. what are the Javascript files needed 3. what is the Minimum version of FusionCharts needed 4. what are the XML attributes/settings 5. what are the Browser requirements and settings, if any. 6. Also, anything else that I missed out in the above 5. Thanks Just made my question more clear.
  4. No data to display problem

    Hi I am using FusionCharts Free. I am unable to see the chart. The message "No data to display" is shown. Here is the XML I am using: <chart caption='Factory Output report' subCaption='By Quantity' pieSliceDepth='30' showBorder='1' formatNumberScale='0' numberSuffix=' Units' animation='1'><set label='Factory 1' value='644' /><set label='Factory 2' value='2644' /><set label='Factory 3' value='1252' /></chart> Please help.
  5. How do I turn on or off Debug mode and Animation?
  6. Multiple charts in a page problem

    Thanks for the quick response. So, Unique Id has to be given for each chart in the page. It Worked !
  7. Hi I am trying the following piece of code to generate multiple charts in html in one page. <html> <head> <script language="JavaScript" src="../FusionCharts/FusionCharts.js"></script> </head> <body bgcolor="#ffffff"> <div id="chart1div" align="center">The chart will appear within this DIV. This text will be replaced by the chart.</div> <script type="text/javascript"> var myChart1 = new FusionCharts("../FusionCharts/Pie3D.swf", "myChart1Id", "900", "300", "0", "0"); myChart1.setDataURL("Data.xml"); myChart1.render("chart1div"); </script> <div id="chart2div" align="center">The chart will appear within this DIV. This text will be replaced by the chart.</div> <script type="text/javascript"> var myChart2 = new FusionCharts("../FusionCharts/Column2D.swf", "myChart1Id", "600", "300", "0", "0"); myChart2.setDataURL("Data.xml"); myChart2.render("chart2div"); </script> </body> </html> I am unable to see the charts. I am not sure what the mistake is. Can you please tell me where I went wrong? Thanks in advance.
  8. Thank you. That was exactly what I was looking for.
  9. Is there a generator to create the xml required by FusionCharts? If so, where can I find it? Thanks