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