jledhead Report post Posted March 3, 2010 this is pretty much my config: <% '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.fusioncharts.com/docs/Contents/Styles/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. Share this post Link to post Share on other sites
Guest Basundhara Ghosal Report post Posted March 4, 2010 Hi, Please try setting the "Duration" attribute of Styles to a larger value. Hope this helps. Share this post Link to post Share on other sites