com.github.fluorumlabs.disconnect.highcharts.PlotGaugeDialOptions 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 js.lang.Unknown;
import org.teavm.jso.JSProperty;
/**
* (Highcharts) Options for the dial or arrow pointer of the gauge.
*
* In styled mode, the dial is styled with the .highcharts-gauge-series .highcharts-dial
rule.
*
* @see https://api.highcharts.com/highcharts/plotOptions.gauge.dial
*
*/
public interface PlotGaugeDialOptions extends Any {
/**
* (Highcharts) The background or fill color of the gauge's dial.
*
* @see https://api.highcharts.com/highcharts/plotOptions.gauge.dial.backgroundColor
*
* @implspec backgroundColor?: (ColorString|GradientColorObject);
*
*/
@JSProperty("backgroundColor")
@Nullable
Unknown getBackgroundColor();
/**
* (Highcharts) The background or fill color of the gauge's dial.
*
* @see https://api.highcharts.com/highcharts/plotOptions.gauge.dial.backgroundColor
*
* @implspec backgroundColor?: (ColorString|GradientColorObject);
*
*/
@JSProperty("backgroundColor")
void setBackgroundColor(GradientColorObject value);
/**
* (Highcharts) The background or fill color of the gauge's dial.
*
* @see https://api.highcharts.com/highcharts/plotOptions.gauge.dial.backgroundColor
*
* @implspec backgroundColor?: (ColorString|GradientColorObject);
*
*/
@JSProperty("backgroundColor")
void setBackgroundColor(String value);
/**
* (Highcharts) The length of the dial's base part, relative to the total
* radius or length of the dial.
*
* @see https://api.highcharts.com/highcharts/plotOptions.gauge.dial.baseLength
*
* @implspec baseLength?: string;
*
*/
@JSProperty("baseLength")
@Nullable
String getBaseLength();
/**
* (Highcharts) The length of the dial's base part, relative to the total
* radius or length of the dial.
*
* @see https://api.highcharts.com/highcharts/plotOptions.gauge.dial.baseLength
*
* @implspec baseLength?: string;
*
*/
@JSProperty("baseLength")
void setBaseLength(String value);
/**
* (Highcharts) The pixel width of the base of the gauge dial. The base is
* the part closest to the pivot, defined by baseLength.
*
* @see https://api.highcharts.com/highcharts/plotOptions.gauge.dial.baseWidth
*
* @implspec baseWidth?: number;
*
*/
@JSProperty("baseWidth")
double getBaseWidth();
/**
* (Highcharts) The pixel width of the base of the gauge dial. The base is
* the part closest to the pivot, defined by baseLength.
*
* @see https://api.highcharts.com/highcharts/plotOptions.gauge.dial.baseWidth
*
* @implspec baseWidth?: number;
*
*/
@JSProperty("baseWidth")
void setBaseWidth(double value);
/**
* (Highcharts) The border color or stroke of the gauge's dial. By default,
* the borderWidth is 0, so this must be set in addition to a custom border
* color.
*
* @see https://api.highcharts.com/highcharts/plotOptions.gauge.dial.borderColor
*
* @implspec borderColor?: ColorString;
*
*/
@JSProperty("borderColor")
@Nullable
String getBorderColor();
/**
* (Highcharts) The border color or stroke of the gauge's dial. By default,
* the borderWidth is 0, so this must be set in addition to a custom border
* color.
*
* @see https://api.highcharts.com/highcharts/plotOptions.gauge.dial.borderColor
*
* @implspec borderColor?: ColorString;
*
*/
@JSProperty("borderColor")
void setBorderColor(String value);
/**
* (Highcharts) The width of the gauge dial border in pixels.
*
* @see https://api.highcharts.com/highcharts/plotOptions.gauge.dial.borderWidth
*
* @implspec borderWidth?: number;
*
*/
@JSProperty("borderWidth")
double getBorderWidth();
/**
* (Highcharts) The width of the gauge dial border in pixels.
*
* @see https://api.highcharts.com/highcharts/plotOptions.gauge.dial.borderWidth
*
* @implspec borderWidth?: number;
*
*/
@JSProperty("borderWidth")
void setBorderWidth(double value);
/**
* (Highcharts) The radius or length of the dial, in percentages relative to
* the radius of the gauge itself.
*
* @see https://api.highcharts.com/highcharts/plotOptions.gauge.dial.radius
*
* @implspec radius?: string;
*
*/
@JSProperty("radius")
@Nullable
String getRadius();
/**
* (Highcharts) The radius or length of the dial, in percentages relative to
* the radius of the gauge itself.
*
* @see https://api.highcharts.com/highcharts/plotOptions.gauge.dial.radius
*
* @implspec radius?: string;
*
*/
@JSProperty("radius")
void setRadius(String value);
/**
* (Highcharts) The length of the dial's rear end, the part that extends out
* on the other side of the pivot. Relative to the dial's length.
*
* @see https://api.highcharts.com/highcharts/plotOptions.gauge.dial.rearLength
*
* @implspec rearLength?: string;
*
*/
@JSProperty("rearLength")
@Nullable
String getRearLength();
/**
* (Highcharts) The length of the dial's rear end, the part that extends out
* on the other side of the pivot. Relative to the dial's length.
*
* @see https://api.highcharts.com/highcharts/plotOptions.gauge.dial.rearLength
*
* @implspec rearLength?: string;
*
*/
@JSProperty("rearLength")
void setRearLength(String value);
/**
* (Highcharts) The width of the top of the dial, closest to the perimeter.
* The pivot narrows in from the base to the top.
*
* @see https://api.highcharts.com/highcharts/plotOptions.gauge.dial.topWidth
*
* @implspec topWidth?: number;
*
*/
@JSProperty("topWidth")
double getTopWidth();
/**
* (Highcharts) The width of the top of the dial, closest to the perimeter.
* The pivot narrows in from the base to the top.
*
* @see https://api.highcharts.com/highcharts/plotOptions.gauge.dial.topWidth
*
* @implspec topWidth?: number;
*
*/
@JSProperty("topWidth")
void setTopWidth(double value);
}