![JAR search and dependency download from the Maven repository](/logo.png)
com.github.fluorumlabs.disconnect.highcharts.PointerAxisCoordinatesObject 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 js.util.collections.Array;
import org.teavm.jso.JSProperty;
/**
* Positions in terms of axis values.
*
*/
public interface PointerAxisCoordinatesObject extends Any {
/**
* Positions on the x-axis.
*
* @implspec xAxis: Array;
*
*/
@JSProperty("xAxis")
Array getXAxis();
/**
* Positions on the x-axis.
*
* @implspec xAxis: Array;
*
*/
@JSProperty("xAxis")
void setXAxis(Array value);
/**
* Positions on the y-axis.
*
* @implspec yAxis: Array;
*
*/
@JSProperty("yAxis")
Array getYAxis();
/**
* Positions on the y-axis.
*
* @implspec yAxis: Array;
*
*/
@JSProperty("yAxis")
void setYAxis(Array value);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy