com.github.fluorumlabs.disconnect.highcharts.ZAxisCurrentDateIndicatorOptions 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.extras.JsEnum;
import js.lang.Any;
import js.lang.Unknown;
import org.teavm.jso.JSProperty;
/**
* (Gantt) Show an indicator on the axis for the current date and time. Can be a
* boolean or a configuration object similar to xAxis.plotLines.
*
* @see https://api.highcharts.com/gantt/zAxis.currentDateIndicator
*
*/
public interface ZAxisCurrentDateIndicatorOptions extends Any {
/**
* (Gantt) A custom class name, in addition to the default
* highcharts-plot-line
, to apply to each individual line.
*
* @see https://api.highcharts.com/gantt/zAxis.currentDateIndicator.className
*
* @implspec className?: string;
*
*/
@JSProperty("className")
@Nullable
String getClassName();
/**
* (Gantt) A custom class name, in addition to the default
* highcharts-plot-line
, to apply to each individual line.
*
* @see https://api.highcharts.com/gantt/zAxis.currentDateIndicator.className
*
* @implspec className?: string;
*
*/
@JSProperty("className")
void setClassName(String value);
/**
* (Gantt) The color of the line.
*
* @see https://api.highcharts.com/gantt/zAxis.currentDateIndicator.color
*
* @implspec color?: (ColorString|GradientColorObject|object);
*
*/
@JSProperty("color")
@Nullable
Unknown getColor();
/**
* (Gantt) The color of the line.
*
* @see https://api.highcharts.com/gantt/zAxis.currentDateIndicator.color
*
* @implspec color?: (ColorString|GradientColorObject|object);
*
*/
@JSProperty("color")
void setColor(GradientColorObject value);
/**
* (Gantt) The color of the line.
*
* @see https://api.highcharts.com/gantt/zAxis.currentDateIndicator.color
*
* @implspec color?: (ColorString|GradientColorObject|object);
*
*/
@JSProperty("color")
void setColor(String value);
/**
* (Gantt) The color of the line.
*
* @see https://api.highcharts.com/gantt/zAxis.currentDateIndicator.color
*
* @implspec color?: (ColorString|GradientColorObject|object);
*
*/
@JSProperty("color")
void setColor(Any value);
/**
* (Gantt) The dashing or dot style for the plot line. For possible values
* see this overview.
*
* @see https://api.highcharts.com/gantt/zAxis.currentDateIndicator.dashStyle
*
* @implspec dashStyle?: ("Dash"|"DashDot"|"Dot"|"LongDash"|"LongDashDot"|"LongDashDotDot"|"ShortDash"|"ShortDashDot"|"ShortDashDotDot"|"ShortDot"|"Solid");
*
*/
@JSProperty("dashStyle")
@Nullable
DashStyle getDashStyle();
/**
* (Gantt) The dashing or dot style for the plot line. For possible values
* see this overview.
*
* @see https://api.highcharts.com/gantt/zAxis.currentDateIndicator.dashStyle
*
* @implspec dashStyle?: ("Dash"|"DashDot"|"Dot"|"LongDash"|"LongDashDot"|"LongDashDotDot"|"ShortDash"|"ShortDashDot"|"ShortDashDotDot"|"ShortDot"|"Solid");
*
*/
@JSProperty("dashStyle")
void setDashStyle(DashStyle value);
/**
* (Gantt) An object defining mouse events for the plot line. Supported
* properties are click
, mouseover
, mouseout
, mousemove
.
*
* @see https://api.highcharts.com/gantt/zAxis.currentDateIndicator.events
*
* @implspec events?: any;
*
*/
@JSProperty("events")
@Nullable
Any getEvents();
/**
* (Gantt) An object defining mouse events for the plot line. Supported
* properties are click
, mouseover
, mouseout
, mousemove
.
*
* @see https://api.highcharts.com/gantt/zAxis.currentDateIndicator.events
*
* @implspec events?: any;
*
*/
@JSProperty("events")
void setEvents(Any value);
/**
* (Gantt) An id used for identifying the plot line in Axis.removePlotLine.
*
* @see https://api.highcharts.com/gantt/zAxis.currentDateIndicator.id
*
* @implspec id?: string;
*
*/
@JSProperty("id")
@Nullable
String getId();
/**
* (Gantt) An id used for identifying the plot line in Axis.removePlotLine.
*
* @see https://api.highcharts.com/gantt/zAxis.currentDateIndicator.id
*
* @implspec id?: string;
*
*/
@JSProperty("id")
void setId(String value);
/**
* (Gantt) Text labels for the plot bands
*
* @see https://api.highcharts.com/gantt/zAxis.currentDateIndicator.label
*
* @implspec label?: ZAxisCurrentDateIndicatorLabelOptions;
*
*/
@JSProperty("label")
@Nullable
ZAxisCurrentDateIndicatorLabelOptions getLabel();
/**
* (Gantt) Text labels for the plot bands
*
* @see https://api.highcharts.com/gantt/zAxis.currentDateIndicator.label
*
* @implspec label?: ZAxisCurrentDateIndicatorLabelOptions;
*
*/
@JSProperty("label")
void setLabel(ZAxisCurrentDateIndicatorLabelOptions value);
/**
* (Gantt) The width or thickness of the plot line.
*
* @see https://api.highcharts.com/gantt/zAxis.currentDateIndicator.width
*
* @implspec width?: number;
*
*/
@JSProperty("width")
double getWidth();
/**
* (Gantt) The width or thickness of the plot line.
*
* @see https://api.highcharts.com/gantt/zAxis.currentDateIndicator.width
*
* @implspec width?: number;
*
*/
@JSProperty("width")
void setWidth(double value);
/**
* (Gantt) The z index of the plot line within the chart.
*
* @see https://api.highcharts.com/gantt/zAxis.currentDateIndicator.zIndex
*
* @implspec zIndex?: number;
*
*/
@JSProperty("zIndex")
double getZIndex();
/**
* (Gantt) The z index of the plot line within the chart.
*
* @see https://api.highcharts.com/gantt/zAxis.currentDateIndicator.zIndex
*
* @implspec zIndex?: number;
*
*/
@JSProperty("zIndex")
void setZIndex(double value);
/**
*/
abstract class DashStyle extends JsEnum {
public static final DashStyle DASH = JsEnum.of("Dash");
public static final DashStyle DASHDOT = JsEnum.of("DashDot");
public static final DashStyle DOT = JsEnum.of("Dot");
public static final DashStyle LONGDASH = JsEnum.of("LongDash");
public static final DashStyle LONGDASHDOT = JsEnum.of("LongDashDot");
public static final DashStyle LONGDASHDOTDOT = JsEnum.of("LongDashDotDot");
public static final DashStyle SHORTDASH = JsEnum.of("ShortDash");
public static final DashStyle SHORTDASHDOT = JsEnum.of("ShortDashDot");
public static final DashStyle SHORTDASHDOTDOT = JsEnum.of("ShortDashDotDot");
public static final DashStyle SHORTDOT = JsEnum.of("ShortDot");
public static final DashStyle SOLID = JsEnum.of("Solid");
}
}