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

com.github.fluorumlabs.disconnect.highcharts.PositionObject 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;

/**
 * An object containing x and y properties for the position of an element.
 *
 */
public interface PositionObject extends Any {
  /**
   * X position of the element.
   *
   * @implspec x: number;
   *
   */
  @JSProperty("x")
  double getX();

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy