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

com.github.fluorumlabs.disconnect.highcharts.SeriesAfterAnimateEventObject Maven / Gradle / Ivy

There is a newer version: 0.1.0-alpha2
Show newest version
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