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

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

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

import js.lang.Any;
import org.teavm.jso.JSProperty;

/**
 * A rectangle.
 *
 */
public interface RectangleObject extends Any {
  /**
   * Height of the rectangle.
   *
   * @implspec height: number;
   *
   */
  @JSProperty("height")
  double getHeight();

  /**
   * Height of the rectangle.
   *
   * @implspec height: number;
   *
   */
  @JSProperty("height")
  void setHeight(double value);

  /**
   * Width of the rectangle.
   *
   * @implspec width: number;
   *
   */
  @JSProperty("width")
  double getWidth();

  /**
   * Width of the rectangle.
   *
   * @implspec width: number;
   *
   */
  @JSProperty("width")
  void setWidth(double value);

  /**
   * Horizontal position of the rectangle.
   *
   * @implspec x: number;
   *
   */
  @JSProperty("x")
  double getX();

  /**
   * Horizontal position of the rectangle.
   *
   * @implspec x: number;
   *
   */
  @JSProperty("x")
  void setX(double value);

  /**
   * Vertical position of the rectangle.
   *
   * @implspec y: number;
   *
   */
  @JSProperty("y")
  double getY();

  /**
   * Vertical position of the rectangle.
   *
   * @implspec y: number;
   *
   */
  @JSProperty("y")
  void setY(double value);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy