com.github.fluorumlabs.disconnect.highcharts.PlotIkhSenkouSpanAStylesOptions 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 org.teavm.jso.JSProperty;
public interface PlotIkhSenkouSpanAStylesOptions extends Any {
/**
* (Highstock) Color of the line.
*
* @see https://api.highcharts.com/highstock/plotOptions.ikh.senkouSpanA.styles.lineColor
*
* @implspec lineColor?: ColorString;
*
*/
@JSProperty("lineColor")
@Nullable
String getLineColor();
/**
* (Highstock) Color of the line.
*
* @see https://api.highcharts.com/highstock/plotOptions.ikh.senkouSpanA.styles.lineColor
*
* @implspec lineColor?: ColorString;
*
*/
@JSProperty("lineColor")
void setLineColor(String value);
/**
* (Highstock) Pixel width of the line.
*
* @see https://api.highcharts.com/highstock/plotOptions.ikh.senkouSpanA.styles.lineWidth
*
* @implspec lineWidth?: number;
*
*/
@JSProperty("lineWidth")
double getLineWidth();
/**
* (Highstock) Pixel width of the line.
*
* @see https://api.highcharts.com/highstock/plotOptions.ikh.senkouSpanA.styles.lineWidth
*
* @implspec lineWidth?: number;
*
*/
@JSProperty("lineWidth")
void setLineWidth(double value);
}