Shawn H

Members
  • Content count

    5
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Shawn H

  1. OK I'm going to be honest here. I am really getting upset about this product. We have just recently upgraded to the new XT and it's buggy as hell. I have already posted one problem without a solution so here's another one for you guys. Here's is some really simple code that does NOT work. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"> <head> <script type="text/javascript" src="/static/common/fusioncharts/Charts/FusionCharts.js"></script> </head> <body> <div id="chart_div"></div> <script type="text/javascript"> //FusionCharts.setCurrentRenderer('javascript'); var myxml = "<chart><set label='Some Label' value='10' /></chart>"; var chart = new FusionCharts("/static/common/fusioncharts/Charts/Column2D.swf","FCChart1","310", "190", "0", "1"); chart.setDataXML( myxml ); chart.render( "chart_div"); </script> </body> </html> What happens is that the chart will load and then the Flash chart decides to go and do a request for Data.xml. I gave it XML. It doesn't need to go out and call for Data.xml because that URL doesn't exist. The above code works fine when I set the renderer to Javascript.
  2. Thanks for the reply and checking my problem out. I'm not sure what happened but all is working now. Even some other problems I was having yesterday with the charts are working correctly now. Possibly some caching issue on my end. Not sure. Anyways thanks for the help!
  3. Hi we just upgraded to FusionCharts XT and have come across a problem with how Data URLs are handled. Example I have a URL that has encrypted parameters, so some of these characters have to be encoded //This is an example URL with params I provide to fusion charts somepage?EN_KHbRN%252BYbpC%252Fdfy5rwjm4vw%253D%253D=AI%252FuxAVVksE%253D //This is what Fusion Charts Javascript will call. Which is correct somepage?EN_KHbRN%2BYbpC%2Fdfy5rwjm4vw%3D%3D=AI%2FuxAVVksE%3D //this is what the flash chart will call which is totally wrong. somepage?EN_KHbRN YbpC/dfy5rwjm4vw===AI/uxAVVksE= Any ideas on a solution to this problem?
  4. Data Url : Provided Vs. Invoked

    No, this is running on a server.
  5. Data Url : Provided Vs. Invoked

    Not sure what you mean but this is how I'm rendering. var chart1 = new FusionCharts("/static/common/fusioncharts/Charts/Area2D.swf", "FChart", "405", "300", "0", "1"); chart1.setChartDataUrl(url, 'xml' ); chart1.render("FChartDiv");