com.github.fluorumlabs.disconnect.highcharts.PlotMacdMacdLineOptions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of disconnect-highcharts Show documentation
Show all versions of disconnect-highcharts Show documentation
Highcharts API bindings for Disconnect Zero
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);
}