![JAR search and dependency download from the Maven repository](/logo.png)
com.github.fluorumlabs.disconnect.highcharts.PointerAxisCoordinateObject Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of disconnect-highcharts Show documentation
Show all versions of disconnect-highcharts Show documentation
Highcharts API bindings for Disconnect Zero
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