Quote
<%
'Create an XML data document in a string variable
Dim strXML
strXML = ""
do while not rs.eof
' id = rs("id")
' strXML = strXML & " "
strXML = strXML & " "
rs.movenext
loop
rs.close
strXML = strXML & ""
strXML = strXML & ""
strXML = strXML & ""
strXML = strXML & " "
strXML = strXML & " "
strXML = strXML & " "
set rscolor = nothing
'Create the chart - Column 3D Chart with data from strXML variable using dataXML method
%>
<%Call renderChart("FusionCharts_User/Charts/Pie2D.swf", "", strXML, "byarea", 600, 300, false, false)%>
'Create an XML data document in a string variable
Dim strXML
strXML = "
do while not rs.eof
' id = rs("id")
' strXML = strXML & "
strXML = strXML & "
rs.movenext
loop
rs.close
strXML = strXML & "
strXML = strXML & "
strXML = strXML & ""
strXML = strXML & "
strXML = strXML & "
strXML = strXML & "
set rscolor = nothing
'Create the chart - Column 3D Chart with data from strXML variable using dataXML method
%>
<%Call renderChart("FusionCharts_User/Charts/Pie2D.swf", "", strXML, "byarea", 600, 300, false, false)%>
I don't get any errors so I am assuming my syntax is right. I am also looking at this page for the style http://www.fusioncha.../Animation.html
what I am trying to do is slow the animation down just a little bit to have a little more affect.
Help is appreciated.

Back to top
MultiQuote