com.github.fluorumlabs.disconnect.highcharts.PlotIkhSenkouSpanStylesOptions 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 org.teavm.jso.JSProperty;
public interface PlotIkhSenkouSpanStylesOptions extends Any {
/**
* (Highstock) Color of the area between Senkou Span A and B.
*
* @see https://api.highcharts.com/highstock/plotOptions.ikh.senkouSpan.styles.fill
*
* @implspec fill?: ColorString;
*
*/
@JSProperty("fill")
@Nullable
String getFill();
/**
* (Highstock) Color of the area between Senkou Span A and B.
*
* @see https://api.highcharts.com/highstock/plotOptions.ikh.senkouSpan.styles.fill
*
* @implspec fill?: ColorString;
*
*/
@JSProperty("fill")
void setFill(String value);
}