com.github.fluorumlabs.disconnect.highcharts.PlotBbBottomLineOptions 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.bb.bottomLine
*
*/
public interface PlotBbBottomLineOptions extends Any {
/**
* (Highstock) Styles for a bottom line.
*
* @see https://api.highcharts.com/highstock/plotOptions.bb.bottomLine.styles
*
* @implspec styles?: PlotBbBottomLineStylesOptions;
*
*/
@JSProperty("styles")
@Nullable
PlotBbBottomLineStylesOptions getStyles();
/**
* (Highstock) Styles for a bottom line.
*
* @see https://api.highcharts.com/highstock/plotOptions.bb.bottomLine.styles
*
* @implspec styles?: PlotBbBottomLineStylesOptions;
*
*/
@JSProperty("styles")
void setStyles(PlotBbBottomLineStylesOptions value);
}