com.github.fluorumlabs.disconnect.highcharts.PlotPyramidDragDropGuideBoxOptions 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) Style options for the guide box. The guide box has one state by
* default, the default
state.
*
* @see https://api.highcharts.com/highcharts/plotOptions.pyramid.dragDrop.guideBox
*
*/
public interface PlotPyramidDragDropGuideBoxOptions extends Any {
/**
* (Highcharts) Style options for the guide box default state.
*
* @see https://api.highcharts.com/highcharts/plotOptions.pyramid.dragDrop.guideBox.default
*
* @implspec default?: PlotPyramidDragDropGuideBoxDefaultOptions;
*
*/
@JSProperty("default")
@Nullable
PlotPyramidDragDropGuideBoxDefaultOptions getDefault();
/**
* (Highcharts) Style options for the guide box default state.
*
* @see https://api.highcharts.com/highcharts/plotOptions.pyramid.dragDrop.guideBox.default
*
* @implspec default?: PlotPyramidDragDropGuideBoxDefaultOptions;
*
*/
@JSProperty("default")
void setDefault(PlotPyramidDragDropGuideBoxDefaultOptions value);
}