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

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

There is a newer version: 0.1.0-alpha2
Show newest version
package com.github.fluorumlabs.disconnect.highcharts;

import js.lang.Any;
import org.teavm.jso.JSProperty;

/**
 * (Highcharts, Highstock, Highmaps) Enable or disable the initial animation
 * when a series is displayed. The animation can also be set as a configuration
 * object. Please note that this option only applies to the initial animation of
 * the series itself. For other animations, see chart.animation and the
 * animation parameter under the API methods. The following properties are
 * supported:
 *
 * (see online documentation for example)
 *
 * Due to poor performance, animation is disabled in old IE browsers for several
 * chart types.
 *
 * @see https://api.highcharts.com/highcharts/plotOptions.series.animation
 * @see https://api.highcharts.com/highstock/plotOptions.series.animation
 * @see https://api.highcharts.com/highmaps/plotOptions.series.animation
 *
 */
public interface PlotSeriesAnimationOptions extends Any {
  /**
   * @implspec duration?: number;
   *
   */
  @JSProperty("duration")
  double getDuration();

  /**
   * @implspec duration?: number;
   *
   */
  @JSProperty("duration")
  void setDuration(double value);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy