All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.fluorumlabs.disconnect.highcharts.AnnotationsShapeOptions Maven / Gradle / Ivy

There is a newer version: 0.1.0-alpha2
Show newest version
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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy