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 .java 2s.c om*/ 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 cancelAnimation(); public boolean isAnimationStarted(); public void setChartAnimationListener(ChartAnimationListener animationListener); }