org.dashbuilder.renderer.chartjs.lib.options.AnimationCallback Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dashbuilder-renderer-chartjs Show documentation
Show all versions of dashbuilder-renderer-chartjs Show documentation
Dashbuilder Renderer for the Chart JS API
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();
}