![JAR search and dependency download from the Maven repository](/logo.png)
com.github.fluorumlabs.disconnect.highcharts.PlotVbpZoneLinesStylesOptions 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 js.lang.Unknown;
import org.teavm.jso.JSProperty;
public interface PlotVbpZoneLinesStylesOptions extends Any {
/**
* (Highstock) Color of zone lines.
*
* @see https://api.highcharts.com/highstock/plotOptions.vbp.zoneLines.styles.color
*
* @implspec color?: (ColorString|GradientColorObject|object);
*
*/
@JSProperty("color")
@Nullable
Unknown getColor();
/**
* (Highstock) Color of zone lines.
*
* @see https://api.highcharts.com/highstock/plotOptions.vbp.zoneLines.styles.color
*
* @implspec color?: (ColorString|GradientColorObject|object);
*
*/
@JSProperty("color")
void setColor(GradientColorObject value);
/**
* (Highstock) Color of zone lines.
*
* @see https://api.highcharts.com/highstock/plotOptions.vbp.zoneLines.styles.color
*
* @implspec color?: (ColorString|GradientColorObject|object);
*
*/
@JSProperty("color")
void setColor(String value);
/**
* (Highstock) Color of zone lines.
*
* @see https://api.highcharts.com/highstock/plotOptions.vbp.zoneLines.styles.color
*
* @implspec color?: (ColorString|GradientColorObject|object);
*
*/
@JSProperty("color")
void setColor(Any value);
/**
* (Highstock) The dash style of zone lines.
*
* @see https://api.highcharts.com/highstock/plotOptions.vbp.zoneLines.styles.dashStyle
*
* @implspec dashStyle?: string;
*
*/
@JSProperty("dashStyle")
@Nullable
String getDashStyle();
/**
* (Highstock) The dash style of zone lines.
*
* @see https://api.highcharts.com/highstock/plotOptions.vbp.zoneLines.styles.dashStyle
*
* @implspec dashStyle?: string;
*
*/
@JSProperty("dashStyle")
void setDashStyle(String value);
/**
* (Highstock) Pixel width of zone lines.
*
* @see https://api.highcharts.com/highstock/plotOptions.vbp.zoneLines.styles.lineWidth
*
* @implspec lineWidth?: number;
*
*/
@JSProperty("lineWidth")
double getLineWidth();
/**
* (Highstock) Pixel width of zone lines.
*
* @see https://api.highcharts.com/highstock/plotOptions.vbp.zoneLines.styles.lineWidth
*
* @implspec lineWidth?: number;
*
*/
@JSProperty("lineWidth")
void setLineWidth(double value);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy