为条形图设置动画

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了为条形图设置动画相关的知识,希望对你有一定的参考价值。

  1. import com.greensock.*;
  2. import com.greensock.easing.*;
  3. // ---------------------------
  4. // Bar Char graph animation
  5. // ---------------------------
  6. // Enter number of bars
  7. var bars:Number=2;
  8. var animationDirection:String="vertical";// horizontal
  9. var graphLabels:Boolean=true;// Are there any labels above or on bars?
  10.  
  11. // Trigger this function to start animation
  12. setUp();
  13.  
  14. // Fade in axis
  15. axis_mc.alpha=0;
  16. TweenMax.to(axis_mc, 1, {alpha:1});
  17.  
  18. // Test to see direction and set bars ready to animate
  19. function setUp():void{
  20. switch (animationDirection) {
  21. case "vertical" :
  22. for (var i:Number = 1; i<=bars; i++) {
  23. this["bar"+i].y = this["bar"+i].y + this["bar"+i].height;
  24. }
  25. break;
  26. case "horizontal" :
  27. for (var j:Number = 1; j<=bars; j++) {
  28. this["bar"+j].x = this["bar"+j].x - this["bar"+j].width;
  29. }
  30. break;
  31. }
  32. if(graphLabels) hideLabels();
  33. TweenMax.delayedCall(1,animateBars);
  34. }
  35.  
  36. // Test to see direction and animate bars
  37. function animateBars():void{
  38. switch (animationDirection) {
  39. case "vertical" :
  40. for (var i:Number = 1; i<=bars; i++) {
  41. TweenMax.to(this["bar"+i], 1, {y:this["bar"+i].y-this["bar"+i].height, delay:0.2*i, ease:Circ.easeOut});
  42. }
  43. break;
  44. case "horizontal" :
  45. for (var j:Number = 1; j<=bars; j++) {
  46. TweenMax.to(this["bar"+j], 1, {x:this["bar"+j].x+this["bar"+j].width, delay:0.2*j, ease:Circ.easeOut});
  47. }
  48. break;
  49. }
  50. }
  51.  
  52. function hideLabels(){
  53. for(var i:Number = 1; i<=bars ; i++)
  54. {
  55. this["barLabel"+i].alpha = 0;
  56. }
  57. TweenMax.delayedCall(2,animateLabels);
  58. }
  59.  
  60. function animateLabels(){
  61. for(var i:Number = 1; i<=bars ; i++)
  62. {
  63. TweenMax.to(this["barLabel"+i],0.5,{alpha:1, delay:0.2*i});
  64. }
  65. }
  66.  
  67. // ---------------------------
  68. // Bar Char graph animation
  69. // ---------------------------

以上是关于为条形图设置动画的主要内容,如果未能解决你的问题,请参考以下文章

R语言ggplot2可视化改变柱状图(条形图)的填充色实战:默认的颜色为灰色改变柱状图(条形图)的填充色设置每个柱子(条形)使用不同的色彩

使用 pyqt 创建条形图

Google图表(可视化)中堆积条形图中的第三个条形图无效

在 pyqtgraph 中为条形图设置渐变颜色

R语言gganimate包创建可视化gif动图:ggplot2可视化静态条形图(bar plot)gganimate包创建动态条形图(bar plot)动画基于transition_time函数

为带有线条的条形图设置相应的颜色