Ejemplo n.º 1
0
 /**
  * Animates the rendering of the chart on the x-axis with the specified animation time. If
  * animate(...) is called, no further calling of invalidate() is necessary to refresh the chart.
  * ANIMATIONS ONLY WORK FOR API LEVEL 11 (Android 3.0.x) AND HIGHER.
  *
  * @param durationMillis
  */
 public void animateX(int durationMillis) {
   mAnimator.animateX(durationMillis);
 }
Ejemplo n.º 2
0
 /**
  * Animates the rendering of the chart on the x-axis with the specified animation time. If
  * animate(...) is called, no further calling of invalidate() is necessary to refresh the chart.
  * ANIMATIONS ONLY WORK FOR API LEVEL 11 (Android 3.0.x) AND HIGHER.
  *
  * @param durationMillis
  * @param easing a predefined easing option
  */
 public void animateX(int durationMillis, Easing.EasingOption easing) {
   mAnimator.animateX(durationMillis, easing);
 }