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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy