All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.fluorumlabs.disconnect.highcharts.RangeSelectorInputPositionOptions Maven / Gradle / Ivy

There is a newer version: 0.1.0-alpha2
Show newest version
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");
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy