![JAR search and dependency download from the Maven repository](/logo.png)
com.github.fluorumlabs.disconnect.highcharts.PlotTreemapDrillUpButtonPositionOptions 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 javax.annotation.Nullable;
import js.extras.JsEnum;
import js.lang.Any;
import org.teavm.jso.JSProperty;
/**
* (Highcharts) The position of the button.
*
* @see https://api.highcharts.com/highcharts/plotOptions.treemap.drillUpButton.position
*
*/
public interface PlotTreemapDrillUpButtonPositionOptions extends Any {
/**
* (Highcharts) Horizontal alignment of the button.
*
* @see https://api.highcharts.com/highcharts/plotOptions.treemap.drillUpButton.position.align
*
* @implspec align?: ("center"|"left"|"right");
*
*/
@JSProperty("align")
@Nullable
Align getAlign();
/**
* (Highcharts) Horizontal alignment of the button.
*
* @see https://api.highcharts.com/highcharts/plotOptions.treemap.drillUpButton.position.align
*
* @implspec align?: ("center"|"left"|"right");
*
*/
@JSProperty("align")
void setAlign(Align value);
/**
* (Highcharts) Vertical alignment of the button.
*
* @see https://api.highcharts.com/highcharts/plotOptions.treemap.drillUpButton.position.verticalAlign
*
* @implspec verticalAlign?: ("bottom"|"middle"|"top");
*
*/
@JSProperty("verticalAlign")
@Nullable
VerticalAlign getVerticalAlign();
/**
* (Highcharts) Vertical alignment of the button.
*
* @see https://api.highcharts.com/highcharts/plotOptions.treemap.drillUpButton.position.verticalAlign
*
* @implspec verticalAlign?: ("bottom"|"middle"|"top");
*
*/
@JSProperty("verticalAlign")
void setVerticalAlign(VerticalAlign value);
/**
* (Highcharts) Horizontal offset of the button.
*
* @see https://api.highcharts.com/highcharts/plotOptions.treemap.drillUpButton.position.x
*
* @implspec x?: number;
*
*/
@JSProperty("x")
double getX();
/**
* (Highcharts) Horizontal offset of the button.
*
* @see https://api.highcharts.com/highcharts/plotOptions.treemap.drillUpButton.position.x
*
* @implspec x?: number;
*
*/
@JSProperty("x")
void setX(double value);
/**
* (Highcharts) Vertical offset of the button.
*
* @see https://api.highcharts.com/highcharts/plotOptions.treemap.drillUpButton.position.y
*
* @implspec y?: number;
*
*/
@JSProperty("y")
double getY();
/**
* (Highcharts) Vertical offset of the button.
*
* @see https://api.highcharts.com/highcharts/plotOptions.treemap.drillUpButton.position.y
*
* @implspec y?: number;
*
*/
@JSProperty("y")
void setY(double value);
/**
*/
abstract class Align extends JsEnum {
public static final Align CENTER = JsEnum.of("center");
public static final Align LEFT = JsEnum.of("left");
public static final Align RIGHT = JsEnum.of("right");
}
/**
*/
abstract class VerticalAlign extends JsEnum {
public static final VerticalAlign BOTTOM = JsEnum.of("bottom");
public static final VerticalAlign MIDDLE = JsEnum.of("middle");
public static final VerticalAlign TOP = JsEnum.of("top");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy