![JAR search and dependency download from the Maven repository](/logo.png)
com.github.fluorumlabs.disconnect.highcharts.AxisTitlePositionObject 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;
/**
* Position of the axis title.
*
*/
public interface AxisTitlePositionObject extends Any {
/**
* X position.
*
* @implspec x: number;
*
*/
@JSProperty("x")
double getX();
/**
* X position.
*
* @implspec x: number;
*
*/
@JSProperty("x")
void setX(double value);
/**
* Y position.
*
* @implspec y: number;
*
*/
@JSProperty("y")
double getY();
/**
* Y position.
*
* @implspec y: number;
*
*/
@JSProperty("y")
void setY(double value);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy