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

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

/**
 * One position in relation to an axis.
 *
 */
public interface PointerAxisCoordinateObject extends Any {
  /**
   * Related axis.
   *
   * @implspec axis: Axis;
   *
   */
  @JSProperty("axis")
  Axis getAxis();

  /**
   * Related axis.
   *
   * @implspec axis: Axis;
   *
   */
  @JSProperty("axis")
  void setAxis(Axis value);

  /**
   * Axis value.
   *
   * @implspec value: number;
   *
   */
  @JSProperty("value")
  double getValue();

  /**
   * Axis value.
   *
   * @implspec value: number;
   *
   */
  @JSProperty("value")
  void setValue(double value);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy