com.github.fluorumlabs.disconnect.highcharts.PlotAtrStatesHoverAnimationOptions 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.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.atr.states.hover.animation
*
*/
public interface PlotAtrStatesHoverAnimationOptions 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.atr.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.atr.states.hover.animation.duration
*
* @implspec duration?: number;
*
*/
@JSProperty("duration")
void setDuration(double value);
}