All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.dashbuilder.renderer.chartjs.lib.options.AnimationCallback Maven / Gradle / Ivy

There is a newer version: 7.74.1.Final
Show newest version
package org.dashbuilder.renderer.chartjs.lib.options;

/**
 * Callback used to handle animation state changes for charts
 */
public interface AnimationCallback {

    /**
     * Method will be invoked during animation in progress
     * @param progress - from 0 to 1
     */
    public void onProgress(double progress);

    /**
     * Method will be invoked when animation complete
     */
    public void onAnimationComplete();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy