![JAR search and dependency download from the Maven repository](/logo.png)
com.github.fluorumlabs.disconnect.highcharts.SeriesBulletDataTargetOptions 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;
/**
* (Highcharts) Individual target options for each point.
*
* @see https://api.highcharts.com/highcharts/series.bullet.data.targetOptions
*
*/
public interface SeriesBulletDataTargetOptions extends Any {
/**
* (Highcharts) The border color of the rectangle representing the target.
* When not set, the point's border color is used.
*
* In styled mode, use class highcharts-bullet-target
instead.
*
* @see https://api.highcharts.com/highcharts/series.bullet.data.targetOptions.borderColor
*
* @implspec borderColor?: ColorString;
*
*/
@JSProperty("borderColor")
@Nullable
String getBorderColor();
/**
* (Highcharts) The border color of the rectangle representing the target.
* When not set, the point's border color is used.
*
* In styled mode, use class highcharts-bullet-target
instead.
*
* @see https://api.highcharts.com/highcharts/series.bullet.data.targetOptions.borderColor
*
* @implspec borderColor?: ColorString;
*
*/
@JSProperty("borderColor")
void setBorderColor(String value);
/**
* (Highcharts) The border width of the rectangle representing the target.
*
* In styled mode, use class highcharts-bullet-target
instead.
*
* @see https://api.highcharts.com/highcharts/series.bullet.data.targetOptions.borderWidth
*
* @implspec borderWidth?: number;
*
*/
@JSProperty("borderWidth")
double getBorderWidth();
/**
* (Highcharts) The border width of the rectangle representing the target.
*
* In styled mode, use class highcharts-bullet-target
instead.
*
* @see https://api.highcharts.com/highcharts/series.bullet.data.targetOptions.borderWidth
*
* @implspec borderWidth?: number;
*
*/
@JSProperty("borderWidth")
void setBorderWidth(double value);
/**
* (Highcharts) The color of the rectangle representing the target. When not
* set, point's color (if set in point's options - color
) or zone of the
* target value (if zones
or negativeColor
are set) or the same color as
* the point has is used.
*
* In styled mode, use class highcharts-bullet-target
instead.
*
* @see https://api.highcharts.com/highcharts/series.bullet.data.targetOptions.color
*
* @implspec color?: (ColorString|GradientColorObject);
*
*/
@JSProperty("color")
@Nullable
Unknown getColor();
/**
* (Highcharts) The color of the rectangle representing the target. When not
* set, point's color (if set in point's options - color
) or zone of the
* target value (if zones
or negativeColor
are set) or the same color as
* the point has is used.
*
* In styled mode, use class highcharts-bullet-target
instead.
*
* @see https://api.highcharts.com/highcharts/series.bullet.data.targetOptions.color
*
* @implspec color?: (ColorString|GradientColorObject);
*
*/
@JSProperty("color")
void setColor(GradientColorObject value);
/**
* (Highcharts) The color of the rectangle representing the target. When not
* set, point's color (if set in point's options - color
) or zone of the
* target value (if zones
or negativeColor
are set) or the same color as
* the point has is used.
*
* In styled mode, use class highcharts-bullet-target
instead.
*
* @see https://api.highcharts.com/highcharts/series.bullet.data.targetOptions.color
*
* @implspec color?: (ColorString|GradientColorObject);
*
*/
@JSProperty("color")
void setColor(String value);
/**
* (Highcharts) The height of the rectangle representing the target.
*
* @see https://api.highcharts.com/highcharts/series.bullet.data.targetOptions.height
*
* @implspec height?: number;
*
*/
@JSProperty("height")
double getHeight();
/**
* (Highcharts) The height of the rectangle representing the target.
*
* @see https://api.highcharts.com/highcharts/series.bullet.data.targetOptions.height
*
* @implspec height?: number;
*
*/
@JSProperty("height")
void setHeight(double value);
/**
* (Highcharts) The width of the rectangle representing the target. Could be
* set as a pixel value or as a percentage of a column width.
*
* @see https://api.highcharts.com/highcharts/series.bullet.data.targetOptions.width
*
* @implspec width?: (number|string);
*
*/
@JSProperty("width")
@Nullable
Unknown getWidth();
/**
* (Highcharts) The width of the rectangle representing the target. Could be
* set as a pixel value or as a percentage of a column width.
*
* @see https://api.highcharts.com/highcharts/series.bullet.data.targetOptions.width
*
* @implspec width?: (number|string);
*
*/
@JSProperty("width")
void setWidth(double value);
/**
* (Highcharts) The width of the rectangle representing the target. Could be
* set as a pixel value or as a percentage of a column width.
*
* @see https://api.highcharts.com/highcharts/series.bullet.data.targetOptions.width
*
* @implspec width?: (number|string);
*
*/
@JSProperty("width")
void setWidth(String value);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy