Sign in to follow this  
jledhead

Change Pie2d Display Speed

Recommended Posts

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

Hi,

Please try setting the "Duration" attribute of Styles to a larger value.

Hope this helps. B)

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this