![JAR search and dependency download from the Maven repository](/logo.png)
com.github.fluorumlabs.disconnect.highcharts.SeriesAfterAnimateEventObject Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of disconnect-highcharts Show documentation
Show all versions of disconnect-highcharts Show documentation
Highcharts API bindings for Disconnect Zero
package com.github.fluorumlabs.disconnect.highcharts;
import js.extras.JsEnum;
import js.lang.Any;
import org.teavm.jso.JSProperty;
/**
* Event information regarding completed animation of a series.
*
*/
public interface SeriesAfterAnimateEventObject extends Any {
/**
* Animated series.
*
* @implspec target: Series;
*
*/
@JSProperty("target")
Series getTarget();
/**
* Animated series.
*
* @implspec target: Series;
*
*/
@JSProperty("target")
void setTarget(Series value);
/**
* Event type.
*
* @implspec type: "afterAnimate";
*
*/
@JSProperty("type")
Type getType();
/**
* Event type.
*
* @implspec type: "afterAnimate";
*
*/
@JSProperty("type")
void setType(Type value);
/**
*/
abstract class Type extends JsEnum {
public static final Type AFTERANIMATE = JsEnum.of("afterAnimate");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy