Sign in to follow this  
Atul Darne

Want to reduce speed of rising bar graph while rendering

Recommended Posts

Hi Atul,

 

It is not possible to reduce the speed of animation of data plots in JavaScript variant of FusionCharts,as of now. If you do not want data plots to animate at all, you may set the the attribute "animation" to 0.

 

Ref.

<chart .... animation ='0' >

 

However, if you are using Flash variant of FusionCharts, then you may use "Animation" type of styles, to achieve your requirement. 

 

Ref.

 <styles>
      <definition>
         <style name='plotAnim' type='animation' param='_yScale' start='0' duration='5' />
      </definition>
      <application>
         <apply toObject='Dataplot' styles='plotAnim' />
      </application>
   </styles>
 
You may increase the duration more if you want the data plots to appear more slowly. Please place the above code snippet after all category elements ( or set elements for Single series charts) and before the closing tag of chart.
 
For more information on Animation type of styles, refer : http://docs.fusioncharts.com/charts/contents/index.html?Styles/Animation.html
 
Hope this helps.

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