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

com.github.fluorumlabs.disconnect.highcharts.PlotMaplineStatesHoverAnimationOptions 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) Animation setting for hovering the graph in line-type series.
 *
 * @see https://api.highcharts.com/highcharts/plotOptions.mapline.states.hover.animation
 *
 */
public interface PlotMaplineStatesHoverAnimationOptions extends Any {
  /**
   * (Highcharts) The duration of the hover animation in milliseconds. By
   * default the hover state animates quickly in, and slowly back to normal.
   *
   * @see https://api.highcharts.com/highcharts/plotOptions.mapline.states.hover.animation.duration
   *
   * @implspec duration?: number;
   *
   */
  @JSProperty("duration")
  double getDuration();

  /**
   * (Highcharts) The duration of the hover animation in milliseconds. By
   * default the hover state animates quickly in, and slowly back to normal.
   *
   * @see https://api.highcharts.com/highcharts/plotOptions.mapline.states.hover.animation.duration
   *
   * @implspec duration?: number;
   *
   */
  @JSProperty("duration")
  void setDuration(double value);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy