com.github.fluorumlabs.disconnect.highcharts.PlotVbpZoneLinesOptions 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 lines which determine price zones.
*
* @see https://api.highcharts.com/highstock/plotOptions.vbp.zoneLines
*
*/
public interface PlotVbpZoneLinesOptions extends Any {
/**
* (Highstock) Enable/disable zone lines.
*
* @see https://api.highcharts.com/highstock/plotOptions.vbp.zoneLines.enabled
*
* @implspec enabled?: boolean;
*
*/
@JSProperty("enabled")
boolean getEnabled();
/**
* (Highstock) Enable/disable zone lines.
*
* @see https://api.highcharts.com/highstock/plotOptions.vbp.zoneLines.enabled
*
* @implspec enabled?: boolean;
*
*/
@JSProperty("enabled")
void setEnabled(boolean value);
/**
* @implspec styles?: PlotVbpZoneLinesStylesOptions;
*
*/
@JSProperty("styles")
@Nullable
PlotVbpZoneLinesStylesOptions getStyles();
/**
* @implspec styles?: PlotVbpZoneLinesStylesOptions;
*
*/
@JSProperty("styles")
void setStyles(PlotVbpZoneLinesStylesOptions value);
}