com.github.fluorumlabs.disconnect.highcharts.PlotOhlcDragDropOptions 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) The draggable-points module allows points to be moved around or
* modified in the chart. In addition to the options mentioned under the
* dragDrop
API structure, the module fires three events, point.dragStart,
* point.drag and point.drop.
*
* It requires the modules/draggable-points.js
file to be loaded.
*
* @see https://api.highcharts.com/highstock/plotOptions.ohlc.dragDrop
*
*/
public interface PlotOhlcDragDropOptions extends Any {
/**
* (Highstock) Allow close value to be dragged individually. Requires
* draggable-points
module.
*
* @see https://api.highcharts.com/highstock/plotOptions.ohlc.dragDrop.draggableClose
*
* @implspec draggableClose?: boolean;
*
*/
@JSProperty("draggableClose")
boolean getDraggableClose();
/**
* (Highstock) Allow close value to be dragged individually. Requires
* draggable-points
module.
*
* @see https://api.highcharts.com/highstock/plotOptions.ohlc.dragDrop.draggableClose
*
* @implspec draggableClose?: boolean;
*
*/
@JSProperty("draggableClose")
void setDraggableClose(boolean value);
/**
* (Highstock) Allow high value to be dragged individually. Requires
* draggable-points
module.
*
* @see https://api.highcharts.com/highstock/plotOptions.ohlc.dragDrop.draggableHigh
*
* @implspec draggableHigh?: boolean;
*
*/
@JSProperty("draggableHigh")
boolean getDraggableHigh();
/**
* (Highstock) Allow high value to be dragged individually. Requires
* draggable-points
module.
*
* @see https://api.highcharts.com/highstock/plotOptions.ohlc.dragDrop.draggableHigh
*
* @implspec draggableHigh?: boolean;
*
*/
@JSProperty("draggableHigh")
void setDraggableHigh(boolean value);
/**
* (Highstock) Allow low value to be dragged individually. Requires
* draggable-points
module.
*
* @see https://api.highcharts.com/highstock/plotOptions.ohlc.dragDrop.draggableLow
*
* @implspec draggableLow?: boolean;
*
*/
@JSProperty("draggableLow")
boolean getDraggableLow();
/**
* (Highstock) Allow low value to be dragged individually. Requires
* draggable-points
module.
*
* @see https://api.highcharts.com/highstock/plotOptions.ohlc.dragDrop.draggableLow
*
* @implspec draggableLow?: boolean;
*
*/
@JSProperty("draggableLow")
void setDraggableLow(boolean value);
/**
* (Highstock) Allow open value to be dragged individually. Requires
* draggable-points
module.
*
* @see https://api.highcharts.com/highstock/plotOptions.ohlc.dragDrop.draggableOpen
*
* @implspec draggableOpen?: boolean;
*
*/
@JSProperty("draggableOpen")
boolean getDraggableOpen();
/**
* (Highstock) Allow open value to be dragged individually. Requires
* draggable-points
module.
*
* @see https://api.highcharts.com/highstock/plotOptions.ohlc.dragDrop.draggableOpen
*
* @implspec draggableOpen?: boolean;
*
*/
@JSProperty("draggableOpen")
void setDraggableOpen(boolean value);
/**
* (Highstock) Enable dragging in the X dimension.
*
* @see https://api.highcharts.com/highstock/plotOptions.ohlc.dragDrop.draggableX
*
* @implspec draggableX?: boolean;
*
*/
@JSProperty("draggableX")
boolean getDraggableX();
/**
* (Highstock) Enable dragging in the X dimension.
*
* @see https://api.highcharts.com/highstock/plotOptions.ohlc.dragDrop.draggableX
*
* @implspec draggableX?: boolean;
*
*/
@JSProperty("draggableX")
void setDraggableX(boolean value);
/**
* (Highstock) Enable dragging in the Y dimension. Note that this is not
* supported for TreeGrid axes (the default axis type in Gantt charts).
*
* @see https://api.highcharts.com/highstock/plotOptions.ohlc.dragDrop.draggableY
*
* @implspec draggableY?: boolean;
*
*/
@JSProperty("draggableY")
boolean getDraggableY();
/**
* (Highstock) Enable dragging in the Y dimension. Note that this is not
* supported for TreeGrid axes (the default axis type in Gantt charts).
*
* @see https://api.highcharts.com/highstock/plotOptions.ohlc.dragDrop.draggableY
*
* @implspec draggableY?: boolean;
*
*/
@JSProperty("draggableY")
void setDraggableY(boolean value);
/**
* (Highstock) Options for the drag handles.
*
* @see https://api.highcharts.com/highstock/plotOptions.ohlc.dragDrop.dragHandle
*
* @implspec dragHandle?: PlotOhlcDragDropDragHandleOptions;
*
*/
@JSProperty("dragHandle")
@Nullable
PlotOhlcDragDropDragHandleOptions getDragHandle();
/**
* (Highstock) Options for the drag handles.
*
* @see https://api.highcharts.com/highstock/plotOptions.ohlc.dragDrop.dragHandle
*
* @implspec dragHandle?: PlotOhlcDragDropDragHandleOptions;
*
*/
@JSProperty("dragHandle")
void setDragHandle(PlotOhlcDragDropDragHandleOptions value);
/**
* (Highstock) Set the maximum X value the points can be moved to.
*
* @see https://api.highcharts.com/highstock/plotOptions.ohlc.dragDrop.dragMaxX
*
* @implspec dragMaxX?: number;
*
*/
@JSProperty("dragMaxX")
double getDragMaxX();
/**
* (Highstock) Set the maximum X value the points can be moved to.
*
* @see https://api.highcharts.com/highstock/plotOptions.ohlc.dragDrop.dragMaxX
*
* @implspec dragMaxX?: number;
*
*/
@JSProperty("dragMaxX")
void setDragMaxX(double value);
/**
* (Highstock) Set the maximum Y value the points can be moved to.
*
* @see https://api.highcharts.com/highstock/plotOptions.ohlc.dragDrop.dragMaxY
*
* @implspec dragMaxY?: number;
*
*/
@JSProperty("dragMaxY")
double getDragMaxY();
/**
* (Highstock) Set the maximum Y value the points can be moved to.
*
* @see https://api.highcharts.com/highstock/plotOptions.ohlc.dragDrop.dragMaxY
*
* @implspec dragMaxY?: number;
*
*/
@JSProperty("dragMaxY")
void setDragMaxY(double value);
/**
* (Highstock) Set the minimum X value the points can be moved to.
*
* @see https://api.highcharts.com/highstock/plotOptions.ohlc.dragDrop.dragMinX
*
* @implspec dragMinX?: number;
*
*/
@JSProperty("dragMinX")
double getDragMinX();
/**
* (Highstock) Set the minimum X value the points can be moved to.
*
* @see https://api.highcharts.com/highstock/plotOptions.ohlc.dragDrop.dragMinX
*
* @implspec dragMinX?: number;
*
*/
@JSProperty("dragMinX")
void setDragMinX(double value);
/**
* (Highstock) Set the minimum Y value the points can be moved to.
*
* @see https://api.highcharts.com/highstock/plotOptions.ohlc.dragDrop.dragMinY
*
* @implspec dragMinY?: number;
*
*/
@JSProperty("dragMinY")
double getDragMinY();
/**
* (Highstock) Set the minimum Y value the points can be moved to.
*
* @see https://api.highcharts.com/highstock/plotOptions.ohlc.dragDrop.dragMinY
*
* @implspec dragMinY?: number;
*
*/
@JSProperty("dragMinY")
void setDragMinY(double value);
/**
* (Highstock) The X precision value to drag to for this series. Set to 0 to
* disable. By default this is disabled, except for category axes, where the
* default is 1.
*
* @see https://api.highcharts.com/highstock/plotOptions.ohlc.dragDrop.dragPrecisionX
*
* @implspec dragPrecisionX?: number;
*
*/
@JSProperty("dragPrecisionX")
double getDragPrecisionX();
/**
* (Highstock) The X precision value to drag to for this series. Set to 0 to
* disable. By default this is disabled, except for category axes, where the
* default is 1.
*
* @see https://api.highcharts.com/highstock/plotOptions.ohlc.dragDrop.dragPrecisionX
*
* @implspec dragPrecisionX?: number;
*
*/
@JSProperty("dragPrecisionX")
void setDragPrecisionX(double value);
/**
* (Highstock) The Y precision value to drag to for this series. Set to 0 to
* disable. By default this is disabled, except for category axes, where the
* default is 1.
*
* @see https://api.highcharts.com/highstock/plotOptions.ohlc.dragDrop.dragPrecisionY
*
* @implspec dragPrecisionY?: number;
*
*/
@JSProperty("dragPrecisionY")
double getDragPrecisionY();
/**
* (Highstock) The Y precision value to drag to for this series. Set to 0 to
* disable. By default this is disabled, except for category axes, where the
* default is 1.
*
* @see https://api.highcharts.com/highstock/plotOptions.ohlc.dragDrop.dragPrecisionY
*
* @implspec dragPrecisionY?: number;
*
*/
@JSProperty("dragPrecisionY")
void setDragPrecisionY(double value);
/**
* (Highstock) The amount of pixels to drag the pointer before it counts as
* a drag operation. This prevents drag/drop to fire when just clicking or
* selecting points.
*
* @see https://api.highcharts.com/highstock/plotOptions.ohlc.dragDrop.dragSensitivity
*
* @implspec dragSensitivity?: number;
*
*/
@JSProperty("dragSensitivity")
double getDragSensitivity();
/**
* (Highstock) The amount of pixels to drag the pointer before it counts as
* a drag operation. This prevents drag/drop to fire when just clicking or
* selecting points.
*
* @see https://api.highcharts.com/highstock/plotOptions.ohlc.dragDrop.dragSensitivity
*
* @implspec dragSensitivity?: number;
*
*/
@JSProperty("dragSensitivity")
void setDragSensitivity(double value);
/**
* (Highstock) Group the points by a property. Points with the same property
* value will be grouped together when moving.
*
* @see https://api.highcharts.com/highstock/plotOptions.ohlc.dragDrop.groupBy
*
* @implspec groupBy?: string;
*
*/
@JSProperty("groupBy")
@Nullable
String getGroupBy();
/**
* (Highstock) Group the points by a property. Points with the same property
* value will be grouped together when moving.
*
* @see https://api.highcharts.com/highstock/plotOptions.ohlc.dragDrop.groupBy
*
* @implspec groupBy?: string;
*
*/
@JSProperty("groupBy")
void setGroupBy(String value);
/**
* (Highstock) Style options for the guide box. The guide box has one state
* by default, the default
state.
*
* @see https://api.highcharts.com/highstock/plotOptions.ohlc.dragDrop.guideBox
*
* @implspec guideBox?: (PlotOhlcDragDropGuideBoxOptions|Dictionary);
*
*/
@JSProperty("guideBox")
@Nullable
Unknown getGuideBox();
/**
* (Highstock) Style options for the guide box. The guide box has one state
* by default, the default
state.
*
* @see https://api.highcharts.com/highstock/plotOptions.ohlc.dragDrop.guideBox
*
* @implspec guideBox?: (PlotOhlcDragDropGuideBoxOptions|Dictionary);
*
*/
@JSProperty("guideBox")
void setGuideBox(PlotOhlcDragDropGuideBoxOptions value);
/**
* (Highstock) Style options for the guide box. The guide box has one state
* by default, the default
state.
*
* @see https://api.highcharts.com/highstock/plotOptions.ohlc.dragDrop.guideBox
*
* @implspec guideBox?: (PlotOhlcDragDropGuideBoxOptions|Dictionary);
*
*/
@JSProperty("guideBox")
void setGuideBox(Dictionary value);
/**
* (Highstock) Update points as they are dragged. If false, a guide box is
* drawn to illustrate the new point size.
*
* @see https://api.highcharts.com/highstock/plotOptions.ohlc.dragDrop.liveRedraw
*
* @implspec liveRedraw?: boolean;
*
*/
@JSProperty("liveRedraw")
boolean getLiveRedraw();
/**
* (Highstock) Update points as they are dragged. If false, a guide box is
* drawn to illustrate the new point size.
*
* @see https://api.highcharts.com/highstock/plotOptions.ohlc.dragDrop.liveRedraw
*
* @implspec liveRedraw?: boolean;
*
*/
@JSProperty("liveRedraw")
void setLiveRedraw(boolean value);
}