com.github.fluorumlabs.disconnect.highcharts.RangeSelectorInputPositionOptions 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.extras.JsEnum;
import js.lang.Any;
import org.teavm.jso.JSProperty;
/**
* (Highstock) Positioning for the input boxes. Allowed properties are align
,
* x
and y
.
*
* @see https://api.highcharts.com/highstock/rangeSelector.inputPosition
*
*/
public interface RangeSelectorInputPositionOptions extends Any {
/**
* (Highstock) The alignment of the input box. Allowed properties are
* left
, center
, right
.
*
* @see https://api.highcharts.com/highstock/rangeSelector.inputPosition.align
*
* @implspec align?: ("center"|"left"|"right");
*
*/
@JSProperty("align")
@Nullable
Align getAlign();
/**
* (Highstock) The alignment of the input box. Allowed properties are
* left
, center
, right
.
*
* @see https://api.highcharts.com/highstock/rangeSelector.inputPosition.align
*
* @implspec align?: ("center"|"left"|"right");
*
*/
@JSProperty("align")
void setAlign(Align value);
/**
* (Highstock) X offset of the input row.
*
* @see https://api.highcharts.com/highstock/rangeSelector.inputPosition.x
*
* @implspec x?: number;
*
*/
@JSProperty("x")
double getX();
/**
* (Highstock) X offset of the input row.
*
* @see https://api.highcharts.com/highstock/rangeSelector.inputPosition.x
*
* @implspec x?: number;
*
*/
@JSProperty("x")
void setX(double value);
/**
* (Highstock) Y offset of the input row.
*
* @see https://api.highcharts.com/highstock/rangeSelector.inputPosition.y
*
* @implspec y?: number;
*
*/
@JSProperty("y")
double getY();
/**
* (Highstock) Y offset of the input row.
*
* @see https://api.highcharts.com/highstock/rangeSelector.inputPosition.y
*
* @implspec y?: number;
*
*/
@JSProperty("y")
void setY(double value);
/**
*/
abstract class Align extends JsEnum {
public static final Align CENTER = JsEnum.of("center");
public static final Align LEFT = JsEnum.of("left");
public static final Align RIGHT = JsEnum.of("right");
}
}