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

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

public interface PlotVbpVolumeDivisionStylesOptions extends Any {
  /**
   * (Highstock) Color of negative volume bars.
   *
   * @see https://api.highcharts.com/highstock/plotOptions.vbp.volumeDivision.styles.negativeColor
   *
   * @implspec negativeColor?: (ColorString|GradientColorObject|object);
   *
   */
  @JSProperty("negativeColor")
  @Nullable
  Unknown getNegativeColor();

  /**
   * (Highstock) Color of negative volume bars.
   *
   * @see https://api.highcharts.com/highstock/plotOptions.vbp.volumeDivision.styles.negativeColor
   *
   * @implspec negativeColor?: (ColorString|GradientColorObject|object);
   *
   */
  @JSProperty("negativeColor")
  void setNegativeColor(GradientColorObject value);

  /**
   * (Highstock) Color of negative volume bars.
   *
   * @see https://api.highcharts.com/highstock/plotOptions.vbp.volumeDivision.styles.negativeColor
   *
   * @implspec negativeColor?: (ColorString|GradientColorObject|object);
   *
   */
  @JSProperty("negativeColor")
  void setNegativeColor(String value);

  /**
   * (Highstock) Color of negative volume bars.
   *
   * @see https://api.highcharts.com/highstock/plotOptions.vbp.volumeDivision.styles.negativeColor
   *
   * @implspec negativeColor?: (ColorString|GradientColorObject|object);
   *
   */
  @JSProperty("negativeColor")
  void setNegativeColor(Any value);

  /**
   * (Highstock) Color of positive volume bars.
   *
   * @see https://api.highcharts.com/highstock/plotOptions.vbp.volumeDivision.styles.positiveColor
   *
   * @implspec positiveColor?: ColorString;
   *
   */
  @JSProperty("positiveColor")
  @Nullable
  String getPositiveColor();

  /**
   * (Highstock) Color of positive volume bars.
   *
   * @see https://api.highcharts.com/highstock/plotOptions.vbp.volumeDivision.styles.positiveColor
   *
   * @implspec positiveColor?: ColorString;
   *
   */
  @JSProperty("positiveColor")
  void setPositiveColor(String value);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy