![JAR search and dependency download from the Maven repository](/logo.png)
com.github.fluorumlabs.disconnect.highcharts.AlignObject 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 java.lang.String;
import javax.annotation.Nullable;
import js.lang.Any;
import org.teavm.jso.JSProperty;
/**
* Options to align the element relative to the chart or another box.
*
*/
public interface AlignObject extends Any {
/**
* Horizontal alignment. Can be one of left
, center
and right
.
*
* @implspec align?: string;
*
*/
@JSProperty("align")
@Nullable
String getAlign();
/**
* Horizontal alignment. Can be one of left
, center
and right
.
*
* @implspec align?: string;
*
*/
@JSProperty("align")
void setAlign(String value);
/**
* Use the transform
attribute with translateX and translateY custom
* attributes to align this elements rather than x
and y
attributes.
*
* @implspec alignByTranslate?: boolean;
*
*/
@JSProperty("alignByTranslate")
boolean getAlignByTranslate();
/**
* Use the transform
attribute with translateX and translateY custom
* attributes to align this elements rather than x
and y
attributes.
*
* @implspec alignByTranslate?: boolean;
*
*/
@JSProperty("alignByTranslate")
void setAlignByTranslate(boolean value);
/**
* Vertical alignment. Can be one of top
, middle
and bottom
.
*
* @implspec verticalAlign?: string;
*
*/
@JSProperty("verticalAlign")
@Nullable
String getVerticalAlign();
/**
* Vertical alignment. Can be one of top
, middle
and bottom
.
*
* @implspec verticalAlign?: string;
*
*/
@JSProperty("verticalAlign")
void setVerticalAlign(String value);
/**
* Horizontal pixel offset from alignment.
*
* @implspec x?: number;
*
*/
@JSProperty("x")
double getX();
/**
* Horizontal pixel offset from alignment.
*
* @implspec x?: number;
*
*/
@JSProperty("x")
void setX(double value);
/**
* Vertical pixel offset from alignment.
*
* @implspec y?: number;
*
*/
@JSProperty("y")
double getY();
/**
* Vertical pixel offset from alignment.
*
* @implspec y?: number;
*
*/
@JSProperty("y")
void setY(double value);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy