com.github.fluorumlabs.disconnect.highcharts.PlotTilemapAnimationOptions 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, Highmaps) Animation is disabled by default on the heatmap
* series.
*
* @see https://api.highcharts.com/highcharts/plotOptions.tilemap.animation
* @see https://api.highcharts.com/highmaps/plotOptions.tilemap.animation
*
*/
public interface PlotTilemapAnimationOptions extends Any {
/**
* @implspec duration?: number;
*
*/
@JSProperty("duration")
double getDuration();
/**
* @implspec duration?: number;
*
*/
@JSProperty("duration")
void setDuration(double value);
}