lecho.lib.hellocharts.animation.ChartAnimationListener Java Examples

The following examples show how to use lecho.lib.hellocharts.animation.ChartAnimationListener. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: AbstractChartView.java    From hellocharts-android with Apache License 2.0 4 votes vote down vote up
@Override
public void setDataAnimationListener(ChartAnimationListener animationListener) {
    dataAnimator.setChartAnimationListener(animationListener);
}
 
Example #2
Source File: AbstractChartView.java    From hellocharts-android with Apache License 2.0 4 votes vote down vote up
@Override
public void setViewportAnimationListener(ChartAnimationListener animationListener) {
    viewportAnimator.setChartAnimationListener(animationListener);
}
 
Example #3
Source File: Chart.java    From hellocharts-android with Apache License 2.0 2 votes vote down vote up
/**
 * Set listener for data animation to be notified when data animation started and finished. By default that flag is
 * set to true so be careful with animation and custom viewports.
 */
public void setDataAnimationListener(ChartAnimationListener animationListener);
 
Example #4
Source File: Chart.java    From hellocharts-android with Apache License 2.0 2 votes vote down vote up
/**
 * Set listener for viewport animation to be notified when viewport animation started and finished.
 */
public void setViewportAnimationListener(ChartAnimationListener animationListener);