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

com.github.fluorumlabs.disconnect.highcharts.PlotGaugeDragDropGuideBoxDefaultOptions 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) Style options for the guide box default state.
 *
 * @see https://api.highcharts.com/highcharts/plotOptions.gauge.dragDrop.guideBox.default
 *
 */
public interface PlotGaugeDragDropGuideBoxDefaultOptions extends Any {
  /**
   * (Highcharts) CSS class name of the guide box in this state. Defaults to
   * highcharts-drag-box-default.
   *
   * @see https://api.highcharts.com/highcharts/plotOptions.gauge.dragDrop.guideBox.default.className
   *
   * @implspec className?: string;
   *
   */
  @JSProperty("className")
  @Nullable
  String getClassName();

  /**
   * (Highcharts) CSS class name of the guide box in this state. Defaults to
   * highcharts-drag-box-default.
   *
   * @see https://api.highcharts.com/highcharts/plotOptions.gauge.dragDrop.guideBox.default.className
   *
   * @implspec className?: string;
   *
   */
  @JSProperty("className")
  void setClassName(String value);

  /**
   * (Highcharts) Guide box fill color.
   *
   * @see https://api.highcharts.com/highcharts/plotOptions.gauge.dragDrop.guideBox.default.color
   *
   * @implspec color?: (ColorString|GradientColorObject|object);
   *
   */
  @JSProperty("color")
  @Nullable
  Unknown getColor();

  /**
   * (Highcharts) Guide box fill color.
   *
   * @see https://api.highcharts.com/highcharts/plotOptions.gauge.dragDrop.guideBox.default.color
   *
   * @implspec color?: (ColorString|GradientColorObject|object);
   *
   */
  @JSProperty("color")
  void setColor(GradientColorObject value);

  /**
   * (Highcharts) Guide box fill color.
   *
   * @see https://api.highcharts.com/highcharts/plotOptions.gauge.dragDrop.guideBox.default.color
   *
   * @implspec color?: (ColorString|GradientColorObject|object);
   *
   */
  @JSProperty("color")
  void setColor(String value);

  /**
   * (Highcharts) Guide box fill color.
   *
   * @see https://api.highcharts.com/highcharts/plotOptions.gauge.dragDrop.guideBox.default.color
   *
   * @implspec color?: (ColorString|GradientColorObject|object);
   *
   */
  @JSProperty("color")
  void setColor(Any value);

  /**
   * (Highcharts) Guide box cursor.
   *
   * @see https://api.highcharts.com/highcharts/plotOptions.gauge.dragDrop.guideBox.default.cursor
   *
   * @implspec cursor?: string;
   *
   */
  @JSProperty("cursor")
  @Nullable
  String getCursor();

  /**
   * (Highcharts) Guide box cursor.
   *
   * @see https://api.highcharts.com/highcharts/plotOptions.gauge.dragDrop.guideBox.default.cursor
   *
   * @implspec cursor?: string;
   *
   */
  @JSProperty("cursor")
  void setCursor(String value);

  /**
   * (Highcharts) Color of the border around the guide box.
   *
   * @see https://api.highcharts.com/highcharts/plotOptions.gauge.dragDrop.guideBox.default.lineColor
   *
   * @implspec lineColor?: ColorString;
   *
   */
  @JSProperty("lineColor")
  @Nullable
  String getLineColor();

  /**
   * (Highcharts) Color of the border around the guide box.
   *
   * @see https://api.highcharts.com/highcharts/plotOptions.gauge.dragDrop.guideBox.default.lineColor
   *
   * @implspec lineColor?: ColorString;
   *
   */
  @JSProperty("lineColor")
  void setLineColor(String value);

  /**
   * (Highcharts) Width of the line around the guide box.
   *
   * @see https://api.highcharts.com/highcharts/plotOptions.gauge.dragDrop.guideBox.default.lineWidth
   *
   * @implspec lineWidth?: number;
   *
   */
  @JSProperty("lineWidth")
  double getLineWidth();

  /**
   * (Highcharts) Width of the line around the guide box.
   *
   * @see https://api.highcharts.com/highcharts/plotOptions.gauge.dragDrop.guideBox.default.lineWidth
   *
   * @implspec lineWidth?: number;
   *
   */
  @JSProperty("lineWidth")
  void setLineWidth(double value);

  /**
   * (Highcharts) Guide box zIndex.
   *
   * @see https://api.highcharts.com/highcharts/plotOptions.gauge.dragDrop.guideBox.default.zIndex
   *
   * @implspec zIndex?: number;
   *
   */
  @JSProperty("zIndex")
  double getZIndex();

  /**
   * (Highcharts) Guide box zIndex.
   *
   * @see https://api.highcharts.com/highcharts/plotOptions.gauge.dragDrop.guideBox.default.zIndex
   *
   * @implspec zIndex?: number;
   *
   */
  @JSProperty("zIndex")
  void setZIndex(double value);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy