Atul Darne Report post Posted March 7, 2014 Want to reduce speed of rising bar graph while rendering. Share this post Link to post Share on other sites
Haritha Report post Posted March 10, 2014 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