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

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

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

import javax.annotation.Nullable;
import js.lang.Any;
import js.lang.Unknown;
import org.teavm.jso.JSProperty;

/**
 * (Highmaps) Overrides for the normal state.
 *
 * @see https://api.highcharts.com/highmaps/plotOptions.xrange.states.normal
 *
 */
public interface PlotXrangeStatesNormalOptions extends Any {
  /**
   * (Highmaps) Animation options for the fill color when returning from hover
   * state to normal state. The animation adds some latency in order to reduce
   * the effect of flickering when hovering in and out of for example an
   * uneven coastline.
   *
   * @see https://api.highcharts.com/highmaps/plotOptions.xrange.states.normal.animation
   *
   * @implspec animation?: (boolean|AnimationOptionsObject);
   *
   */
  @JSProperty("animation")
  @Nullable
  Unknown getAnimation();

  /**
   * (Highmaps) Animation options for the fill color when returning from hover
   * state to normal state. The animation adds some latency in order to reduce
   * the effect of flickering when hovering in and out of for example an
   * uneven coastline.
   *
   * @see https://api.highcharts.com/highmaps/plotOptions.xrange.states.normal.animation
   *
   * @implspec animation?: (boolean|AnimationOptionsObject);
   *
   */
  @JSProperty("animation")
  void setAnimation(boolean value);

  /**
   * (Highmaps) Animation options for the fill color when returning from hover
   * state to normal state. The animation adds some latency in order to reduce
   * the effect of flickering when hovering in and out of for example an
   * uneven coastline.
   *
   * @see https://api.highcharts.com/highmaps/plotOptions.xrange.states.normal.animation
   *
   * @implspec animation?: (boolean|AnimationOptionsObject);
   *
   */
  @JSProperty("animation")
  void setAnimation(AnimationOptionsObject value);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy