com.github.fluorumlabs.disconnect.highcharts.SeriesTilemapDataDragDropGuideBoxOptions 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 org.teavm.jso.JSProperty;
/**
* (Highcharts, Highstock, Highmaps) Style options for the guide box. The guide
* box has one state by default, the default
state.
*
* @see https://api.highcharts.com/highcharts/series.tilemap.data.dragDrop.guideBox
* @see https://api.highcharts.com/highstock/series.tilemap.data.dragDrop.guideBox
* @see https://api.highcharts.com/highmaps/series.tilemap.data.dragDrop.guideBox
*
*/
public interface SeriesTilemapDataDragDropGuideBoxOptions extends Any {
/**
* (Highcharts, Highstock, Highmaps) Style options for the guide box default
* state.
*
* @see https://api.highcharts.com/highcharts/series.tilemap.data.dragDrop.guideBox.default
* @see https://api.highcharts.com/highstock/series.tilemap.data.dragDrop.guideBox.default
* @see https://api.highcharts.com/highmaps/series.tilemap.data.dragDrop.guideBox.default
*
* @implspec default?: SeriesTilemapDataDragDropGuideBoxDefaultOptions;
*
*/
@JSProperty("default")
@Nullable
SeriesTilemapDataDragDropGuideBoxDefaultOptions getDefault();
/**
* (Highcharts, Highstock, Highmaps) Style options for the guide box default
* state.
*
* @see https://api.highcharts.com/highcharts/series.tilemap.data.dragDrop.guideBox.default
* @see https://api.highcharts.com/highstock/series.tilemap.data.dragDrop.guideBox.default
* @see https://api.highcharts.com/highmaps/series.tilemap.data.dragDrop.guideBox.default
*
* @implspec default?: SeriesTilemapDataDragDropGuideBoxDefaultOptions;
*
*/
@JSProperty("default")
void setDefault(SeriesTilemapDataDragDropGuideBoxDefaultOptions value);
}