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

com.github.fluorumlabs.disconnect.highcharts.PlotIkhSenkouSpanOptions 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;

/**
 * (Highstock) The styles for area between Senkou Span A and B
 *
 * @see https://api.highcharts.com/highstock/plotOptions.ikh.senkouSpan
 *
 */
public interface PlotIkhSenkouSpanOptions extends Any {
  /**
   * (Highstock) Color of the area between Senkou Span A and B, when Senkou
   * Span A is above Senkou Span B. Note that if a style.fill is defined,
   * the color takes precedence and the style.fill is ignored.
   *
   * @see https://api.highcharts.com/highstock/plotOptions.ikh.senkouSpan.color
   *
   * @implspec color?: (ColorString|GradientColorObject|object);
   *
   */
  @JSProperty("color")
  @Nullable
  Unknown getColor();

  /**
   * (Highstock) Color of the area between Senkou Span A and B, when Senkou
   * Span A is above Senkou Span B. Note that if a style.fill is defined,
   * the color takes precedence and the style.fill is ignored.
   *
   * @see https://api.highcharts.com/highstock/plotOptions.ikh.senkouSpan.color
   *
   * @implspec color?: (ColorString|GradientColorObject|object);
   *
   */
  @JSProperty("color")
  void setColor(GradientColorObject value);

  /**
   * (Highstock) Color of the area between Senkou Span A and B, when Senkou
   * Span A is above Senkou Span B. Note that if a style.fill is defined,
   * the color takes precedence and the style.fill is ignored.
   *
   * @see https://api.highcharts.com/highstock/plotOptions.ikh.senkouSpan.color
   *
   * @implspec color?: (ColorString|GradientColorObject|object);
   *
   */
  @JSProperty("color")
  void setColor(String value);

  /**
   * (Highstock) Color of the area between Senkou Span A and B, when Senkou
   * Span A is above Senkou Span B. Note that if a style.fill is defined,
   * the color takes precedence and the style.fill is ignored.
   *
   * @see https://api.highcharts.com/highstock/plotOptions.ikh.senkouSpan.color
   *
   * @implspec color?: (ColorString|GradientColorObject|object);
   *
   */
  @JSProperty("color")
  void setColor(Any value);

  /**
   * (Highstock) Color of the area between Senkou Span A and B, when Senkou
   * Span A is under Senkou Span B.
   *
   * @see https://api.highcharts.com/highstock/plotOptions.ikh.senkouSpan.negativeColor
   *
   * @implspec negativeColor?: (ColorString|GradientColorObject|object);
   *
   */
  @JSProperty("negativeColor")
  @Nullable
  Unknown getNegativeColor();

  /**
   * (Highstock) Color of the area between Senkou Span A and B, when Senkou
   * Span A is under Senkou Span B.
   *
   * @see https://api.highcharts.com/highstock/plotOptions.ikh.senkouSpan.negativeColor
   *
   * @implspec negativeColor?: (ColorString|GradientColorObject|object);
   *
   */
  @JSProperty("negativeColor")
  void setNegativeColor(GradientColorObject value);

  /**
   * (Highstock) Color of the area between Senkou Span A and B, when Senkou
   * Span A is under Senkou Span B.
   *
   * @see https://api.highcharts.com/highstock/plotOptions.ikh.senkouSpan.negativeColor
   *
   * @implspec negativeColor?: (ColorString|GradientColorObject|object);
   *
   */
  @JSProperty("negativeColor")
  void setNegativeColor(String value);

  /**
   * (Highstock) Color of the area between Senkou Span A and B, when Senkou
   * Span A is under Senkou Span B.
   *
   * @see https://api.highcharts.com/highstock/plotOptions.ikh.senkouSpan.negativeColor
   *
   * @implspec negativeColor?: (ColorString|GradientColorObject|object);
   *
   */
  @JSProperty("negativeColor")
  void setNegativeColor(Any value);

  /**
   * @implspec styles?: PlotIkhSenkouSpanStylesOptions;
   *
   */
  @JSProperty("styles")
  @Nullable
  PlotIkhSenkouSpanStylesOptions getStyles();

  /**
   * @implspec styles?: PlotIkhSenkouSpanStylesOptions;
   *
   */
  @JSProperty("styles")
  void setStyles(PlotIkhSenkouSpanStylesOptions value);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy