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

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

There is a newer version: 0.1.0-alpha2
Show newest version
package com.github.fluorumlabs.disconnect.highcharts;

import java.lang.String;
import javax.annotation.Nullable;
import js.lang.Any;
import org.teavm.jso.JSProperty;

/**
 * Options to align the element relative to the chart or another box.
 *
 */
public interface AlignObject extends Any {
  /**
   * Horizontal alignment. Can be one of left, center and right.
   *
   * @implspec align?: string;
   *
   */
  @JSProperty("align")
  @Nullable
  String getAlign();

  /**
   * Horizontal alignment. Can be one of left, center and right.
   *
   * @implspec align?: string;
   *
   */
  @JSProperty("align")
  void setAlign(String value);

  /**
   * Use the transform attribute with translateX and translateY custom
   * attributes to align this elements rather than x and y attributes.
   *
   * @implspec alignByTranslate?: boolean;
   *
   */
  @JSProperty("alignByTranslate")
  boolean getAlignByTranslate();

  /**
   * Use the transform attribute with translateX and translateY custom
   * attributes to align this elements rather than x and y attributes.
   *
   * @implspec alignByTranslate?: boolean;
   *
   */
  @JSProperty("alignByTranslate")
  void setAlignByTranslate(boolean value);

  /**
   * Vertical alignment. Can be one of top, middle and bottom.
   *
   * @implspec verticalAlign?: string;
   *
   */
  @JSProperty("verticalAlign")
  @Nullable
  String getVerticalAlign();

  /**
   * Vertical alignment. Can be one of top, middle and bottom.
   *
   * @implspec verticalAlign?: string;
   *
   */
  @JSProperty("verticalAlign")
  void setVerticalAlign(String value);

  /**
   * Horizontal pixel offset from alignment.
   *
   * @implspec x?: number;
   *
   */
  @JSProperty("x")
  double getX();

  /**
   * Horizontal pixel offset from alignment.
   *
   * @implspec x?: number;
   *
   */
  @JSProperty("x")
  void setX(double value);

  /**
   * Vertical pixel offset from alignment.
   *
   * @implspec y?: number;
   *
   */
  @JSProperty("y")
  double getY();

  /**
   * Vertical pixel offset from alignment.
   *
   * @implspec y?: number;
   *
   */
  @JSProperty("y")
  void setY(double value);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy