com.github.fluorumlabs.disconnect.highcharts.PlotPriceenvelopesDragDropGuideBoxDefaultOptions 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 java.lang.String;
import javax.annotation.Nullable;
import js.lang.Any;
import js.lang.Unknown;
import org.teavm.jso.JSProperty;
/**
* (Highstock) Style options for the guide box default state.
*
* @see https://api.highcharts.com/highstock/plotOptions.priceenvelopes.dragDrop.guideBox.default
*
*/
public interface PlotPriceenvelopesDragDropGuideBoxDefaultOptions extends Any {
/**
* (Highstock) CSS class name of the guide box in this state. Defaults to
* highcharts-drag-box-default
.
*
* @see https://api.highcharts.com/highstock/plotOptions.priceenvelopes.dragDrop.guideBox.default.className
*
* @implspec className?: string;
*
*/
@JSProperty("className")
@Nullable
String getClassName();
/**
* (Highstock) CSS class name of the guide box in this state. Defaults to
* highcharts-drag-box-default
.
*
* @see https://api.highcharts.com/highstock/plotOptions.priceenvelopes.dragDrop.guideBox.default.className
*
* @implspec className?: string;
*
*/
@JSProperty("className")
void setClassName(String value);
/**
* (Highstock) Guide box fill color.
*
* @see https://api.highcharts.com/highstock/plotOptions.priceenvelopes.dragDrop.guideBox.default.color
*
* @implspec color?: (ColorString|GradientColorObject|object);
*
*/
@JSProperty("color")
@Nullable
Unknown getColor();
/**
* (Highstock) Guide box fill color.
*
* @see https://api.highcharts.com/highstock/plotOptions.priceenvelopes.dragDrop.guideBox.default.color
*
* @implspec color?: (ColorString|GradientColorObject|object);
*
*/
@JSProperty("color")
void setColor(GradientColorObject value);
/**
* (Highstock) Guide box fill color.
*
* @see https://api.highcharts.com/highstock/plotOptions.priceenvelopes.dragDrop.guideBox.default.color
*
* @implspec color?: (ColorString|GradientColorObject|object);
*
*/
@JSProperty("color")
void setColor(String value);
/**
* (Highstock) Guide box fill color.
*
* @see https://api.highcharts.com/highstock/plotOptions.priceenvelopes.dragDrop.guideBox.default.color
*
* @implspec color?: (ColorString|GradientColorObject|object);
*
*/
@JSProperty("color")
void setColor(Any value);
/**
* (Highstock) Guide box cursor.
*
* @see https://api.highcharts.com/highstock/plotOptions.priceenvelopes.dragDrop.guideBox.default.cursor
*
* @implspec cursor?: string;
*
*/
@JSProperty("cursor")
@Nullable
String getCursor();
/**
* (Highstock) Guide box cursor.
*
* @see https://api.highcharts.com/highstock/plotOptions.priceenvelopes.dragDrop.guideBox.default.cursor
*
* @implspec cursor?: string;
*
*/
@JSProperty("cursor")
void setCursor(String value);
/**
* (Highstock) Color of the border around the guide box.
*
* @see https://api.highcharts.com/highstock/plotOptions.priceenvelopes.dragDrop.guideBox.default.lineColor
*
* @implspec lineColor?: ColorString;
*
*/
@JSProperty("lineColor")
@Nullable
String getLineColor();
/**
* (Highstock) Color of the border around the guide box.
*
* @see https://api.highcharts.com/highstock/plotOptions.priceenvelopes.dragDrop.guideBox.default.lineColor
*
* @implspec lineColor?: ColorString;
*
*/
@JSProperty("lineColor")
void setLineColor(String value);
/**
* (Highstock) Width of the line around the guide box.
*
* @see https://api.highcharts.com/highstock/plotOptions.priceenvelopes.dragDrop.guideBox.default.lineWidth
*
* @implspec lineWidth?: number;
*
*/
@JSProperty("lineWidth")
double getLineWidth();
/**
* (Highstock) Width of the line around the guide box.
*
* @see https://api.highcharts.com/highstock/plotOptions.priceenvelopes.dragDrop.guideBox.default.lineWidth
*
* @implspec lineWidth?: number;
*
*/
@JSProperty("lineWidth")
void setLineWidth(double value);
/**
* (Highstock) Guide box zIndex.
*
* @see https://api.highcharts.com/highstock/plotOptions.priceenvelopes.dragDrop.guideBox.default.zIndex
*
* @implspec zIndex?: number;
*
*/
@JSProperty("zIndex")
double getZIndex();
/**
* (Highstock) Guide box zIndex.
*
* @see https://api.highcharts.com/highstock/plotOptions.priceenvelopes.dragDrop.guideBox.default.zIndex
*
* @implspec zIndex?: number;
*
*/
@JSProperty("zIndex")
void setZIndex(double value);
}