I have just downloaded the recent update and have attempted to update one of my pages to make sure everything is working, although the chart doesnt render on the page and only displays "Chart." where the chart is supposed to be. When I "View Source" on the page, all the values and labels are there although no chart.
Here is my code:
<!--#include file="../scripts/FusionCharts/Class/FusionCharts_Gen.asp"-->
<%
dim FCAppAwardNumber
set FCAppAwardNumber = new FusionCharts
call FCAppAwardNumber.setChartType("Column3D")
call FCAppAwardNumber.setSize("100%","150")
call FCAppAwardNumber.setSWFPath("../scripts/FusionCharts/Charts/")
call FCAppAwardNumber.setID("AAFigures")
Call FCAppAwardNumber.setChartMessage("ChartNoDataText=Chart Data not provided;PBarLoadingText=Please Wait.The chart is loading...")
FCAppAwardNumberParam = "caption=Application and Award;subcaption=Figures;xAxisName=Academic Year;yAxisName=Total;debugMode=1"
call FCAppAwardNumber.setChartParams(FCAppAwardNumberParam)
call FCAppAwardNumber.addChartData(RS2("Count"), "Label=A 0809", "")
call FCAppAwardNumber.addChartData(RS3("Count"), "Label=A 0809", "")
call FCAppAwardNumber.addChartData(RS4("Count"), "Label=A 0708", "")
call FCAppAwardNumber.addChartData(RS5("Count"), "Label=A 0708", "")
%>
<html>
<head>
<SCRIPT LANGUAGE="Javascript" SRC="../scripts/FusionCharts/charts/FusionCharts.js"></SCRIPT>
</head>
<body>
<table><tr><td><%
call FCAppAwardNumber.renderChart(false)
%>
</td></tr></table>
</body>
</html>
The RS3... are all SQL RecordSets, they have not been modifed and were used with the previous charts and are still correctly returning the correct figures.
Any help would be greatly appreciated.
Stewart

Back to top
MultiQuote