Back to project page customhellochartdemo.
The source code is released under:
Apache License
If you think the Android project customhellochartdemo listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package lecho.lib.hellocharts.animation; // w ww.j a va2 s .co m public interface PieChartRotationAnimator { public static final int FAST_ANIMATION_DURATION = 200; public void startAnimation(float startAngle, float angleToRotate); public void cancelAnimation(); public boolean isAnimationStarted(); public void setChartAnimationListener(ChartAnimationListener animationListener); }