com.github.fluorumlabs.disconnect.highcharts.PlotXrangeStatesNormalOptions 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 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);
}