hkaren

Members
  • Content count

    4
  • Joined

  • Last visited

Posts posted by hkaren


  1. Hi Angshu.

     

    First of all Marry Christmas.

     

    I have downloaded the latest FusionCarts XT(v 3.2.2) SR1 from http://www.fusioncha...ownload/trials/

     

    I think there is no any problem in that example you have mentioned below, because the example works fine only on IE7 and IE8.

     

    I have no problem with that you have mentioned below.

     

    Is there any suggestion to solve that problem, please?

     

     

    Thanks.

     

     

     

    Hi,

     

    Thanks for your response.

     

     

    Please make sure you have done the following while exporting a chart to avoid the situation:

     

    1.You have defined the correct client side export handler's id in the data (XML/JSON) of the chart.

     

    2. You have passed the correct client side export handler's id while calling the exportChart() function.

     

    3. Flash Player 10 or above is installed in the system.

     

    4. You have Flash Player Global Security settings configured to run the samples from local file system.

     

    Ref: http://docs.fusionch...HowToSetup.html

     

    Hope this helps.


  2. Hello there.

     

    Hi Angshu.

     

    I have downloaded FusionCharts from the lenk below and I am trying to use ExportChartSamples -> ClientSide, it works greate, but ther is one thing I cant do, when I want to save it in the opened window there is no file type.

    post-21139-0-49096700-1324825915_thumb.gif

    How can I solve this problem?

    Thanks.

     

    Hi,

     

    Your FusionCharts version is 3.0.6.

    Starting FusionCharts v3.0.7, you could export your charts as images. And FusionCharts v3.1 adds new dimensions to it, by allowing you to export as PDFs as well, and also lets you choose whether to export the charts at client-side or server-side.

     

    You would need to download the latest version of FusionCharts from the link : http://www.fusioncharts.com/download/

    Hope this helps.smile.gif


  3. Hi all.

     

    I downloaded FusionChartsFree and want to use it with PHP / AJAX, but every time it works with autoplay. Can I stop it?

     

     

    /* index file  */
    
    
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <title>FusionCharts Free Documentation</title>
    <link rel="stylesheet" href="Contents/Style.css" type="text/css" />
    <script language="JavaScript" src="JSClass/FusionCharts.js"></script>
    </head>
    
    <body>
    
    <table width="98%" border="0" cellspacing="0" cellpadding="0" align="center">
     <tr> 
       <td valign="top" class="text" align="center"> <div id="chartdiv" align="center"> 
           FusionCharts. </div>
           <script type="text/javascript">
              var chart = new FusionCharts("Charts/FCF_Column2D.swf", "ChartId", "600", "350");
              chart.setDataURL("Data/Column2D.xml");		
              //chart.setWidth("1000");
    
              chart.render("chartdiv");
           </script>
       </td>
     </tr>
    <tr>
    </table>
    </body>
    </html>
    
    /*  XML File */
    
    <graph caption='Monthly Unit Sales' xAxisName='Month' yAxisName='Units' decimalPrecision='0' formatNumberScale='0' autoplay='false'> /* it's not working */
       <set name='Jan' value='462' color='AFD8F8' />
       <set name='Feb' value='857' color='F6BD0F' />
       <set name='Mar' value='671' color='8BBA00' />
       <set name='Apr' value='494' color='FF8E46'/>
       <set name='May' value='761' color='008E8E'/>
       <set name='Jun' value='960' color='D64646'/>
       <set name='Jul' value='629' color='8E468E'/>
       <set name='Aug' value='622' color='588526'/>
       <set name='Sep' value='376' color='B3AA00'/>
       <set name='Oct' value='494' color='008ED6'/>
       <set name='Nov' value='761' color='9D080D'/>
       <set name='Dec' value='960' color='A186BE'/>
       <set name='Oct' value='494' color='008ED6'/>
       <set name='Nov' value='761' color='9D080D'/>
       <set name='Dec' value='2500' color='A186BE'/>
    </graph>
    
    

     

     

     

     

    Thanks.