lecho.lib.hellocharts.animation.PieChartRotationAnimator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hellocharts-library Show documentation
Show all versions of hellocharts-library Show documentation
Charting library for Android compatible with API 8+(Android 2.2).
package lecho.lib.hellocharts.animation;
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);
}