com.github.fluorumlabs.disconnect.highcharts.PlotIkhSenkouSpanAOptions 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 org.teavm.jso.JSProperty;
/**
* (Highstock) The styles for Senkou Span A line
*
* @see https://api.highcharts.com/highstock/plotOptions.ikh.senkouSpanA
*
*/
public interface PlotIkhSenkouSpanAOptions extends Any {
/**
* @implspec styles?: PlotIkhSenkouSpanAStylesOptions;
*
*/
@JSProperty("styles")
@Nullable
PlotIkhSenkouSpanAStylesOptions getStyles();
/**
* @implspec styles?: PlotIkhSenkouSpanAStylesOptions;
*
*/
@JSProperty("styles")
void setStyles(PlotIkhSenkouSpanAStylesOptions value);
}