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

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

There is a newer version: 0.1.0-alpha2
Show newest version
package com.github.fluorumlabs.disconnect.highcharts;

import javax.annotation.Nullable;
import js.lang.Any;
import js.util.collections.Array;
import org.teavm.jso.JSProperty;

/**
 * (Highstock) The styles for macd line
 *
 * @see https://api.highcharts.com/highstock/plotOptions.macd.macdLine
 *
 */
public interface PlotMacdMacdLineOptions extends Any {
  /**
   * @implspec styles?: PlotMacdMacdLineStylesOptions;
   *
   */
  @JSProperty("styles")
  @Nullable
  PlotMacdMacdLineStylesOptions getStyles();

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

  /**
   * (Highcharts, Highstock) An array defining zones within a series. Zones
   * can be applied to the X axis, Y axis or Z axis for bubbles, according to
   * the zoneAxis option. The zone definitions have to be in ascending order
   * regarding to the value.
   *
   * In styled mode, the color zones are styled with the
   * .highcharts-zone-{n} class, or custom classed from the className
   * option (view live demo).
   *
   * @see https://api.highcharts.com/highcharts/plotOptions.macd.macdLine.zones
   * @see https://api.highcharts.com/highstock/plotOptions.macd.macdLine.zones
   *
   * @implspec zones?: Array;
   *
   */
  @JSProperty("zones")
  @Nullable
  Array getZones();

  /**
   * (Highcharts, Highstock) An array defining zones within a series. Zones
   * can be applied to the X axis, Y axis or Z axis for bubbles, according to
   * the zoneAxis option. The zone definitions have to be in ascending order
   * regarding to the value.
   *
   * In styled mode, the color zones are styled with the
   * .highcharts-zone-{n} class, or custom classed from the className
   * option (view live demo).
   *
   * @see https://api.highcharts.com/highcharts/plotOptions.macd.macdLine.zones
   * @see https://api.highcharts.com/highstock/plotOptions.macd.macdLine.zones
   *
   * @implspec zones?: Array;
   *
   */
  @JSProperty("zones")
  void setZones(Array value);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy