lecho.lib.hellocharts.animation.ChartViewportAnimator 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;
import lecho.lib.hellocharts.model.Viewport;
public interface ChartViewportAnimator {
public static final int FAST_ANIMATION_DURATION = 300;
public void startAnimation(Viewport startViewport, Viewport targetViewport);
public void startAnimation(Viewport startViewport, Viewport targetViewport, long duration);
public void cancelAnimation();
public boolean isAnimationStarted();
public void setChartAnimationListener(ChartAnimationListener animationListener);
}