com.github.fluorumlabs.disconnect.highcharts.PlotPriceenvelopesBottomLineOptions 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) Bottom line options.
*
* @see https://api.highcharts.com/highstock/plotOptions.priceenvelopes.bottomLine
*
*/
public interface PlotPriceenvelopesBottomLineOptions extends Any {
/**
* @implspec styles?: PlotPriceenvelopesBottomLineStylesOptions;
*
*/
@JSProperty("styles")
@Nullable
PlotPriceenvelopesBottomLineStylesOptions getStyles();
/**
* @implspec styles?: PlotPriceenvelopesBottomLineStylesOptions;
*
*/
@JSProperty("styles")
void setStyles(PlotPriceenvelopesBottomLineStylesOptions value);
}