com.github.fluorumlabs.disconnect.highcharts.PlotBbDragDropDragHandleOptions 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.FunctionalInterface;
import java.lang.String;
import javax.annotation.Nullable;
import js.lang.Any;
import js.lang.Unknown;
import org.teavm.jso.JSFunctor;
import org.teavm.jso.JSProperty;
/**
* (Highstock) Options for the drag handles.
*
* @see https://api.highcharts.com/highstock/plotOptions.bb.dragDrop.dragHandle
*
*/
public interface PlotBbDragDropDragHandleOptions extends Any {
/**
* (Highstock) The class name of the drag handles. Defaults to
* highcharts-drag-handle
.
*
* @see https://api.highcharts.com/highstock/plotOptions.bb.dragDrop.dragHandle.className
*
* @implspec className?: string;
*
*/
@JSProperty("className")
@Nullable
String getClassName();
/**
* (Highstock) The class name of the drag handles. Defaults to
* highcharts-drag-handle
.
*
* @see https://api.highcharts.com/highstock/plotOptions.bb.dragDrop.dragHandle.className
*
* @implspec className?: string;
*
*/
@JSProperty("className")
void setClassName(String value);
/**
* (Highstock) The fill color of the drag handles.
*
* @see https://api.highcharts.com/highstock/plotOptions.bb.dragDrop.dragHandle.color
*
* @implspec color?: (ColorString|GradientColorObject|object);
*
*/
@JSProperty("color")
@Nullable
Unknown getColor();
/**
* (Highstock) The fill color of the drag handles.
*
* @see https://api.highcharts.com/highstock/plotOptions.bb.dragDrop.dragHandle.color
*
* @implspec color?: (ColorString|GradientColorObject|object);
*
*/
@JSProperty("color")
void setColor(GradientColorObject value);
/**
* (Highstock) The fill color of the drag handles.
*
* @see https://api.highcharts.com/highstock/plotOptions.bb.dragDrop.dragHandle.color
*
* @implspec color?: (ColorString|GradientColorObject|object);
*
*/
@JSProperty("color")
void setColor(String value);
/**
* (Highstock) The fill color of the drag handles.
*
* @see https://api.highcharts.com/highstock/plotOptions.bb.dragDrop.dragHandle.color
*
* @implspec color?: (ColorString|GradientColorObject|object);
*
*/
@JSProperty("color")
void setColor(Any value);
/**
* (Highstock) The mouse cursor to use for the drag handles. By default this
* is intelligently switching between ew-resize
and ns-resize
depending
* on the direction the point is being dragged.
*
* @see https://api.highcharts.com/highstock/plotOptions.bb.dragDrop.dragHandle.cursor
*
* @implspec cursor?: string;
*
*/
@JSProperty("cursor")
@Nullable
String getCursor();
/**
* (Highstock) The mouse cursor to use for the drag handles. By default this
* is intelligently switching between ew-resize
and ns-resize
depending
* on the direction the point is being dragged.
*
* @see https://api.highcharts.com/highstock/plotOptions.bb.dragDrop.dragHandle.cursor
*
* @implspec cursor?: string;
*
*/
@JSProperty("cursor")
void setCursor(String value);
/**
* (Highstock) The line color of the drag handles.
*
* @see https://api.highcharts.com/highstock/plotOptions.bb.dragDrop.dragHandle.lineColor
*
* @implspec lineColor?: ColorString;
*
*/
@JSProperty("lineColor")
@Nullable
String getLineColor();
/**
* (Highstock) The line color of the drag handles.
*
* @see https://api.highcharts.com/highstock/plotOptions.bb.dragDrop.dragHandle.lineColor
*
* @implspec lineColor?: ColorString;
*
*/
@JSProperty("lineColor")
void setLineColor(String value);
/**
* (Highstock) The line width for the drag handles.
*
* @see https://api.highcharts.com/highstock/plotOptions.bb.dragDrop.dragHandle.lineWidth
*
* @implspec lineWidth?: number;
*
*/
@JSProperty("lineWidth")
double getLineWidth();
/**
* (Highstock) The line width for the drag handles.
*
* @see https://api.highcharts.com/highstock/plotOptions.bb.dragDrop.dragHandle.lineWidth
*
* @implspec lineWidth?: number;
*
*/
@JSProperty("lineWidth")
void setLineWidth(double value);
/**
* (Highstock) Function to define the SVG path to use for the drag handles.
* Takes the point as argument. Should return an SVG path in array format.
* The SVG path is automatically positioned on the point.
*
* @see https://api.highcharts.com/highstock/plotOptions.bb.dragDrop.dragHandle.pathFormatter
*
* @implspec pathFormatter?: () => void;
*
*/
@JSProperty("pathFormatter")
@Nullable
PathFormatter getPathFormatter();
/**
* (Highstock) Function to define the SVG path to use for the drag handles.
* Takes the point as argument. Should return an SVG path in array format.
* The SVG path is automatically positioned on the point.
*
* @see https://api.highcharts.com/highstock/plotOptions.bb.dragDrop.dragHandle.pathFormatter
*
* @implspec pathFormatter?: () => void;
*
*/
@JSProperty("pathFormatter")
void setPathFormatter(PathFormatter value);
/**
* (Highstock) The z index for the drag handles.
*
* @see https://api.highcharts.com/highstock/plotOptions.bb.dragDrop.dragHandle.zIndex
*
* @implspec zIndex?: number;
*
*/
@JSProperty("zIndex")
double getZIndex();
/**
* (Highstock) The z index for the drag handles.
*
* @see https://api.highcharts.com/highstock/plotOptions.bb.dragDrop.dragHandle.zIndex
*
* @implspec zIndex?: number;
*
*/
@JSProperty("zIndex")
void setZIndex(double value);
/**
*/
@JSFunctor
@FunctionalInterface
interface PathFormatter extends Any {
void apply();
}
}