com.github.fluorumlabs.disconnect.highcharts.AnnotationsShapeOptions 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, Highstock, Highmaps) Options for annotation's shapes. Each shape
* inherits options from the shapeOptions object. An option from the
* shapeOptions can be overwritten by config for a specific shape.
*
* @see https://api.highcharts.com/highcharts/annotations.shapeOptions
* @see https://api.highcharts.com/highstock/annotations.shapeOptions
* @see https://api.highcharts.com/highmaps/annotations.shapeOptions
*
*/
public interface AnnotationsShapeOptions extends Any {
/**
* (Highcharts, Highstock, Highmaps) The color of the shape's fill.
*
* @see https://api.highcharts.com/highcharts/annotations.shapeOptions.fill
* @see https://api.highcharts.com/highstock/annotations.shapeOptions.fill
* @see https://api.highcharts.com/highmaps/annotations.shapeOptions.fill
*
* @implspec fill?: (ColorString|GradientColorObject);
*
*/
@JSProperty("fill")
@Nullable
Unknown getFill();
/**
* (Highcharts, Highstock, Highmaps) The color of the shape's fill.
*
* @see https://api.highcharts.com/highcharts/annotations.shapeOptions.fill
* @see https://api.highcharts.com/highstock/annotations.shapeOptions.fill
* @see https://api.highcharts.com/highmaps/annotations.shapeOptions.fill
*
* @implspec fill?: (ColorString|GradientColorObject);
*
*/
@JSProperty("fill")
void setFill(GradientColorObject value);
/**
* (Highcharts, Highstock, Highmaps) The color of the shape's fill.
*
* @see https://api.highcharts.com/highcharts/annotations.shapeOptions.fill
* @see https://api.highcharts.com/highstock/annotations.shapeOptions.fill
* @see https://api.highcharts.com/highmaps/annotations.shapeOptions.fill
*
* @implspec fill?: (ColorString|GradientColorObject);
*
*/
@JSProperty("fill")
void setFill(String value);
/**
* (Highcharts, Highstock, Highmaps) The height of the shape.
*
* @see https://api.highcharts.com/highcharts/annotations.shapeOptions.height
* @see https://api.highcharts.com/highstock/annotations.shapeOptions.height
* @see https://api.highcharts.com/highmaps/annotations.shapeOptions.height
*
* @implspec height?: number;
*
*/
@JSProperty("height")
double getHeight();
/**
* (Highcharts, Highstock, Highmaps) The height of the shape.
*
* @see https://api.highcharts.com/highcharts/annotations.shapeOptions.height
* @see https://api.highcharts.com/highstock/annotations.shapeOptions.height
* @see https://api.highcharts.com/highmaps/annotations.shapeOptions.height
*
* @implspec height?: number;
*
*/
@JSProperty("height")
void setHeight(double value);
/**
* (Highcharts, Highstock, Highmaps) The radius of the shape.
*
* @see https://api.highcharts.com/highcharts/annotations.shapeOptions.r
* @see https://api.highcharts.com/highstock/annotations.shapeOptions.r
* @see https://api.highcharts.com/highmaps/annotations.shapeOptions.r
*
* @implspec r?: number;
*
*/
@JSProperty("r")
double getR();
/**
* (Highcharts, Highstock, Highmaps) The radius of the shape.
*
* @see https://api.highcharts.com/highcharts/annotations.shapeOptions.r
* @see https://api.highcharts.com/highstock/annotations.shapeOptions.r
* @see https://api.highcharts.com/highmaps/annotations.shapeOptions.r
*
* @implspec r?: number;
*
*/
@JSProperty("r")
void setR(double value);
/**
* (Highcharts, Highstock, Highmaps) The color of the shape's stroke.
*
* @see https://api.highcharts.com/highcharts/annotations.shapeOptions.stroke
* @see https://api.highcharts.com/highstock/annotations.shapeOptions.stroke
* @see https://api.highcharts.com/highmaps/annotations.shapeOptions.stroke
*
* @implspec stroke?: ColorString;
*
*/
@JSProperty("stroke")
@Nullable
String getStroke();
/**
* (Highcharts, Highstock, Highmaps) The color of the shape's stroke.
*
* @see https://api.highcharts.com/highcharts/annotations.shapeOptions.stroke
* @see https://api.highcharts.com/highstock/annotations.shapeOptions.stroke
* @see https://api.highcharts.com/highmaps/annotations.shapeOptions.stroke
*
* @implspec stroke?: ColorString;
*
*/
@JSProperty("stroke")
void setStroke(String value);
/**
* (Highcharts, Highstock, Highmaps) The pixel stroke width of the shape.
*
* @see https://api.highcharts.com/highcharts/annotations.shapeOptions.strokeWidth
* @see https://api.highcharts.com/highstock/annotations.shapeOptions.strokeWidth
* @see https://api.highcharts.com/highmaps/annotations.shapeOptions.strokeWidth
*
* @implspec strokeWidth?: number;
*
*/
@JSProperty("strokeWidth")
double getStrokeWidth();
/**
* (Highcharts, Highstock, Highmaps) The pixel stroke width of the shape.
*
* @see https://api.highcharts.com/highcharts/annotations.shapeOptions.strokeWidth
* @see https://api.highcharts.com/highstock/annotations.shapeOptions.strokeWidth
* @see https://api.highcharts.com/highmaps/annotations.shapeOptions.strokeWidth
*
* @implspec strokeWidth?: number;
*
*/
@JSProperty("strokeWidth")
void setStrokeWidth(double value);
/**
* (Highcharts, Highstock, Highmaps) The type of the shape, e.g. circle or
* rectangle.
*
* @see https://api.highcharts.com/highcharts/annotations.shapeOptions.type
* @see https://api.highcharts.com/highstock/annotations.shapeOptions.type
* @see https://api.highcharts.com/highmaps/annotations.shapeOptions.type
*
* @implspec type?: string;
*
*/
@JSProperty("type")
@Nullable
String getType();
/**
* (Highcharts, Highstock, Highmaps) The type of the shape, e.g. circle or
* rectangle.
*
* @see https://api.highcharts.com/highcharts/annotations.shapeOptions.type
* @see https://api.highcharts.com/highstock/annotations.shapeOptions.type
* @see https://api.highcharts.com/highmaps/annotations.shapeOptions.type
*
* @implspec type?: string;
*
*/
@JSProperty("type")
void setType(String value);
/**
* (Highcharts, Highstock, Highmaps) The width of the shape.
*
* @see https://api.highcharts.com/highcharts/annotations.shapeOptions.width
* @see https://api.highcharts.com/highstock/annotations.shapeOptions.width
* @see https://api.highcharts.com/highmaps/annotations.shapeOptions.width
*
* @implspec width?: number;
*
*/
@JSProperty("width")
double getWidth();
/**
* (Highcharts, Highstock, Highmaps) The width of the shape.
*
* @see https://api.highcharts.com/highcharts/annotations.shapeOptions.width
* @see https://api.highcharts.com/highstock/annotations.shapeOptions.width
* @see https://api.highcharts.com/highmaps/annotations.shapeOptions.width
*
* @implspec width?: number;
*
*/
@JSProperty("width")
void setWidth(double value);
}