FusionCharts--Unable to find the container DOM Element

snake8127

New Member
Hello guys Im doing a eval on this FusionCharts and I keep running into snags. I get this error and not sure why...anybody out there familiar with FusionCharts??Im just trying to run the example\[code\]<script src="http://stackoverflow.com/questions/js/fusioncharts/FusionCharts.js" type="text/javascript"></script><script type="text/javascript"><!-- var myChart = new FusionCharts ( "../js/fusioncharts/Column3D.swf", "myChartId", "400", "300", "0", "1" ); myChart.setJSONData( { "chart": { "caption" : "Weekly Sales Summary" , "xAxisName" : "Week", "yAxisName" : "Sales", "numberPrefix" : "$" }, "data" : [ { "label" : "Week 1", "value" : "14400" }, { "label" : "Week 2", "value" : "19600" }, { "label" : "Week 3", "value" : "24000" }, { "label" : "Week 4", "value" : "15700" } ] } ); myChart.render("div_view"); // --> </script> <div id="div_view">FusionCharts will load here!</div> \[/code\]
 
Top