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

com.github.fluorumlabs.disconnect.highcharts.OffsetObject 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 left and top properties for the position in the
 * page.
 *
 */
public interface OffsetObject extends Any {
  /**
   * Left distance to the page border.
   *
   * @implspec left: number;
   *
   */
  @JSProperty("left")
  double getLeft();

  /**
   * Left distance to the page border.
   *
   * @implspec left: number;
   *
   */
  @JSProperty("left")
  void setLeft(double value);

  /**
   * Top distance to the page border.
   *
   * @implspec top: number;
   *
   */
  @JSProperty("top")
  double getTop();

  /**
   * Top distance to the page border.
   *
   * @implspec top: number;
   *
   */
  @JSProperty("top")
  void setTop(double value);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy