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; //from w w w . j av a 2 s. c o m public interface ChartDataAnimator { public static final long DEFAULT_ANIMATION_DURATION = 500; public void startAnimation(long duration); public void cancelAnimation(); public boolean isAnimationStarted(); public void setChartAnimationListener(ChartAnimationListener animationListener); }