jbdev

Members
  • Content count

    2
  • Joined

  • Last visited

About jbdev

  • Rank
    Forum Newbie
  1. Can't Get A Chart To Display.

    OK. I added the JavaScript file FushionChart.js so now my file looks like: <html> <head> <title>My First chart using FusionCharts</title> </script> </head> <body> <div id="chartContainer"> FusionCharts will load here! </div> <script type="text/javascript" src="./StCol3D3.js" ></script> <script type="text/javascript" src="./FusionChart.js" ></script> <script type="text/javascript"> var myChart = new FusionCharts("./Column3D.swf", "ChartId", "400", "300", "0", "0"); mychart.setXMLData ( dataString ); myChart.render("chartContainer"); </script> </body> </html> I still get no chart. Just the message FusionCharts will load here! I'm using IE9 on Win 7. Any thoughts?
  2. I'm very new to FusionCharts (yesterday) and I'm having problems with it. I went through the 'Creating My First Chart' in the documentation and couldn't get it to work. After playing with it for hours, I've finally got the code listed below. The SWF file is in the same directory as the web page. I not I'm loading the data correctly because the alert shows me all of the data correctly. <html> <head> <title>My First chart using FusionCharts</title> </script> </head> <body> <div id="chartContainer"> FusionCharts will load here! </div> <script type="text/javascript" src="./StCol3D3.js" ></script> <script type="text/javascript"> alert(dataString); var myChart = new FusionCharts("./Column3D.swf", "ChartId", "400", "300", "0", "0"); mychart.setXMLData ( dataString ); myChart.render("chartContainer"); </script> </body> </html> Can somebody please tell what I'm doing wrong. TIA - Jeff.