com.github.fluorumlabs.disconnect.highcharts.PlotPyramidAnimationOptions 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) Initial animation is by default disabled for the funnel chart.
*
* @see https://api.highcharts.com/highcharts/plotOptions.pyramid.animation
*
*/
public interface PlotPyramidAnimationOptions extends Any {
/**
* @implspec duration?: number;
*
*/
@JSProperty("duration")
double getDuration();
/**
* @implspec duration?: number;
*
*/
@JSProperty("duration")
void setDuration(double value);
}