com.github.fluorumlabs.disconnect.highcharts.SeriesSolidgaugeDataOptions 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) An array of data points for the series. For the solidgauge
* series type, points can be given in the following ways:
*
*
* -
* An array of numerical values. In this case, the numerical values will be
* interpreted as
y
options. Example:(see online documentation for example)
*
*
* -
* An array of objects with named values. The following snippet shows only a
* few settings, see the complete options set below. If the total number of data
* points exceeds the series' turboThreshold, this option is not available.(see
* online documentation for example)
*
*
*
* The typical gauge only contains a single data value.
*
* @see https://api.highcharts.com/highcharts/series.solidgauge.data
*
*/
public interface SeriesSolidgaugeDataOptions extends Any {
/**
* (Highcharts, Gantt) An additional, individual class name for the data
* point's graphic representation.
*
* @see https://api.highcharts.com/highcharts/series.solidgauge.data.className
* @see https://api.highcharts.com/gantt/series.solidgauge.data.className
*
* @implspec className?: string;
*
*/
@JSProperty("className")
@Nullable
String getClassName();
/**
* (Highcharts, Gantt) An additional, individual class name for the data
* point's graphic representation.
*
* @see https://api.highcharts.com/highcharts/series.solidgauge.data.className
* @see https://api.highcharts.com/gantt/series.solidgauge.data.className
*
* @implspec className?: string;
*
*/
@JSProperty("className")
void setClassName(String value);
/**
* (Highcharts, Highstock, Gantt) Individual color for the point. By default
* the color is pulled from the global colors
array.
*
* In styled mode, the color
option doesn't take effect. Instead, use
* colorIndex
.
*
* @see https://api.highcharts.com/highcharts/series.solidgauge.data.color
* @see https://api.highcharts.com/highstock/series.solidgauge.data.color
* @see https://api.highcharts.com/gantt/series.solidgauge.data.color
*
* @implspec color?: (ColorString|GradientColorObject|object);
*
*/
@JSProperty("color")
@Nullable
Unknown getColor();
/**
* (Highcharts, Highstock, Gantt) Individual color for the point. By default
* the color is pulled from the global colors
array.
*
* In styled mode, the color
option doesn't take effect. Instead, use
* colorIndex
.
*
* @see https://api.highcharts.com/highcharts/series.solidgauge.data.color
* @see https://api.highcharts.com/highstock/series.solidgauge.data.color
* @see https://api.highcharts.com/gantt/series.solidgauge.data.color
*
* @implspec color?: (ColorString|GradientColorObject|object);
*
*/
@JSProperty("color")
void setColor(GradientColorObject value);
/**
* (Highcharts, Highstock, Gantt) Individual color for the point. By default
* the color is pulled from the global colors
array.
*
* In styled mode, the color
option doesn't take effect. Instead, use
* colorIndex
.
*
* @see https://api.highcharts.com/highcharts/series.solidgauge.data.color
* @see https://api.highcharts.com/highstock/series.solidgauge.data.color
* @see https://api.highcharts.com/gantt/series.solidgauge.data.color
*
* @implspec color?: (ColorString|GradientColorObject|object);
*
*/
@JSProperty("color")
void setColor(String value);
/**
* (Highcharts, Highstock, Gantt) Individual color for the point. By default
* the color is pulled from the global colors
array.
*
* In styled mode, the color
option doesn't take effect. Instead, use
* colorIndex
.
*
* @see https://api.highcharts.com/highcharts/series.solidgauge.data.color
* @see https://api.highcharts.com/highstock/series.solidgauge.data.color
* @see https://api.highcharts.com/gantt/series.solidgauge.data.color
*
* @implspec color?: (ColorString|GradientColorObject|object);
*
*/
@JSProperty("color")
void setColor(Any value);
/**
* (Highcharts, Gantt) A specific color index to use for the point, so its
* graphic representations are given the class name highcharts-color-{n}
.
* In styled mode this will change the color of the graphic. In non-styled
* mode, the color by is set by the fill
attribute, so the change in class
* name won't have a visual effect by default.
*
* @see https://api.highcharts.com/highcharts/series.solidgauge.data.colorIndex
* @see https://api.highcharts.com/gantt/series.solidgauge.data.colorIndex
*
* @implspec colorIndex?: number;
*
*/
@JSProperty("colorIndex")
double getColorIndex();
/**
* (Highcharts, Gantt) A specific color index to use for the point, so its
* graphic representations are given the class name highcharts-color-{n}
.
* In styled mode this will change the color of the graphic. In non-styled
* mode, the color by is set by the fill
attribute, so the change in class
* name won't have a visual effect by default.
*
* @see https://api.highcharts.com/highcharts/series.solidgauge.data.colorIndex
* @see https://api.highcharts.com/gantt/series.solidgauge.data.colorIndex
*
* @implspec colorIndex?: number;
*
*/
@JSProperty("colorIndex")
void setColorIndex(double value);
/**
* (Highcharts, Highstock, Gantt) Individual data label for each point. The
* options are the same as the ones for plotOptions.series.dataLabels.
*
* @see https://api.highcharts.com/highcharts/series.solidgauge.data.dataLabels
* @see https://api.highcharts.com/highstock/series.solidgauge.data.dataLabels
* @see https://api.highcharts.com/gantt/series.solidgauge.data.dataLabels
*
* @implspec dataLabels?: PlotSeriesDataLabelsOptions;
*
*/
@JSProperty("dataLabels")
@Nullable
PlotSeriesDataLabelsOptions getDataLabels();
/**
* (Highcharts, Highstock, Gantt) Individual data label for each point. The
* options are the same as the ones for plotOptions.series.dataLabels.
*
* @see https://api.highcharts.com/highcharts/series.solidgauge.data.dataLabels
* @see https://api.highcharts.com/highstock/series.solidgauge.data.dataLabels
* @see https://api.highcharts.com/gantt/series.solidgauge.data.dataLabels
*
* @implspec dataLabels?: PlotSeriesDataLabelsOptions;
*
*/
@JSProperty("dataLabels")
void setDataLabels(PlotSeriesDataLabelsOptions value);
/**
* (Highcharts) A description of the point to add to the screen reader
* information about the point. Requires the Accessibility module.
*
* @see https://api.highcharts.com/highcharts/series.solidgauge.data.description
*
* @implspec description?: string;
*
*/
@JSProperty("description")
@Nullable
String getDescription();
/**
* (Highcharts) A description of the point to add to the screen reader
* information about the point. Requires the Accessibility module.
*
* @see https://api.highcharts.com/highcharts/series.solidgauge.data.description
*
* @implspec description?: string;
*
*/
@JSProperty("description")
void setDescription(String value);
/**
* (Highcharts, Highstock, Highmaps) Point specific options for the
* draggable-points module. Overrides options on series.dragDrop
.
*
* Requires the draggable-points
module.
*
* @see https://api.highcharts.com/highcharts/series.solidgauge.data.dragDrop
* @see https://api.highcharts.com/highstock/series.solidgauge.data.dragDrop
* @see https://api.highcharts.com/highmaps/series.solidgauge.data.dragDrop
*
* @implspec dragDrop?: SeriesSolidgaugeDataDragDropOptions;
*
*/
@JSProperty("dragDrop")
@Nullable
SeriesSolidgaugeDataDragDropOptions getDragDrop();
/**
* (Highcharts, Highstock, Highmaps) Point specific options for the
* draggable-points module. Overrides options on series.dragDrop
.
*
* Requires the draggable-points
module.
*
* @see https://api.highcharts.com/highcharts/series.solidgauge.data.dragDrop
* @see https://api.highcharts.com/highstock/series.solidgauge.data.dragDrop
* @see https://api.highcharts.com/highmaps/series.solidgauge.data.dragDrop
*
* @implspec dragDrop?: SeriesSolidgaugeDataDragDropOptions;
*
*/
@JSProperty("dragDrop")
void setDragDrop(SeriesSolidgaugeDataDragDropOptions value);
/**
* (Highcharts, Highstock, Gantt) Individual point events
*
* @see https://api.highcharts.com/highcharts/series.solidgauge.data.events
* @see https://api.highcharts.com/highstock/series.solidgauge.data.events
* @see https://api.highcharts.com/gantt/series.solidgauge.data.events
*
* @implspec events?: SeriesSolidgaugeDataEventsOptions;
*
*/
@JSProperty("events")
@Nullable
SeriesSolidgaugeDataEventsOptions getEvents();
/**
* (Highcharts, Highstock, Gantt) Individual point events
*
* @see https://api.highcharts.com/highcharts/series.solidgauge.data.events
* @see https://api.highcharts.com/highstock/series.solidgauge.data.events
* @see https://api.highcharts.com/gantt/series.solidgauge.data.events
*
* @implspec events?: SeriesSolidgaugeDataEventsOptions;
*
*/
@JSProperty("events")
void setEvents(SeriesSolidgaugeDataEventsOptions value);
/**
* (Highcharts, Highstock, Gantt) An id for the point. This can be used
* after render time to get a pointer to the point object through
* chart.get()
.
*
* @see https://api.highcharts.com/highcharts/series.solidgauge.data.id
* @see https://api.highcharts.com/highstock/series.solidgauge.data.id
* @see https://api.highcharts.com/gantt/series.solidgauge.data.id
*
* @implspec id?: string;
*
*/
@JSProperty("id")
@Nullable
String getId();
/**
* (Highcharts, Highstock, Gantt) An id for the point. This can be used
* after render time to get a pointer to the point object through
* chart.get()
.
*
* @see https://api.highcharts.com/highcharts/series.solidgauge.data.id
* @see https://api.highcharts.com/highstock/series.solidgauge.data.id
* @see https://api.highcharts.com/gantt/series.solidgauge.data.id
*
* @implspec id?: string;
*
*/
@JSProperty("id")
void setId(String value);
/**
* (Highcharts) The inner radius of an individual point in a solid gauge.
* Can be given as a number (pixels) or percentage string.
*
* @see https://api.highcharts.com/highcharts/series.solidgauge.data.innerRadius
*
* @implspec innerRadius?: (number|string);
*
*/
@JSProperty("innerRadius")
@Nullable
Unknown getInnerRadius();
/**
* (Highcharts) The inner radius of an individual point in a solid gauge.
* Can be given as a number (pixels) or percentage string.
*
* @see https://api.highcharts.com/highcharts/series.solidgauge.data.innerRadius
*
* @implspec innerRadius?: (number|string);
*
*/
@JSProperty("innerRadius")
void setInnerRadius(double value);
/**
* (Highcharts) The inner radius of an individual point in a solid gauge.
* Can be given as a number (pixels) or percentage string.
*
* @see https://api.highcharts.com/highcharts/series.solidgauge.data.innerRadius
*
* @implspec innerRadius?: (number|string);
*
*/
@JSProperty("innerRadius")
void setInnerRadius(String value);
/**
* (Highcharts) The rank for this point's data label in case of collision.
* If two data labels are about to overlap, only the one with the highest
* labelrank
will be drawn.
*
* @see https://api.highcharts.com/highcharts/series.solidgauge.data.labelrank
*
* @implspec labelrank?: number;
*
*/
@JSProperty("labelrank")
double getLabelrank();
/**
* (Highcharts) The rank for this point's data label in case of collision.
* If two data labels are about to overlap, only the one with the highest
* labelrank
will be drawn.
*
* @see https://api.highcharts.com/highcharts/series.solidgauge.data.labelrank
*
* @implspec labelrank?: number;
*
*/
@JSProperty("labelrank")
void setLabelrank(double value);
/**
* (Highcharts) The name of the point as shown in the legend, tooltip,
* dataLabel etc.
*
* @see https://api.highcharts.com/highcharts/series.solidgauge.data.name
*
* @implspec name?: string;
*
*/
@JSProperty("name")
@Nullable
String getName();
/**
* (Highcharts) The name of the point as shown in the legend, tooltip,
* dataLabel etc.
*
* @see https://api.highcharts.com/highcharts/series.solidgauge.data.name
*
* @implspec name?: string;
*
*/
@JSProperty("name")
void setName(String value);
/**
* (Highcharts) The outer radius of an individual point in a solid gauge.
* Can be given as a number (pixels) or percentage string.
*
* @see https://api.highcharts.com/highcharts/series.solidgauge.data.radius
*
* @implspec radius?: (number|string);
*
*/
@JSProperty("radius")
@Nullable
Unknown getRadius();
/**
* (Highcharts) The outer radius of an individual point in a solid gauge.
* Can be given as a number (pixels) or percentage string.
*
* @see https://api.highcharts.com/highcharts/series.solidgauge.data.radius
*
* @implspec radius?: (number|string);
*
*/
@JSProperty("radius")
void setRadius(double value);
/**
* (Highcharts) The outer radius of an individual point in a solid gauge.
* Can be given as a number (pixels) or percentage string.
*
* @see https://api.highcharts.com/highcharts/series.solidgauge.data.radius
*
* @implspec radius?: (number|string);
*
*/
@JSProperty("radius")
void setRadius(String value);
/**
* (Highcharts, Highstock, Gantt) Whether the data point is selected
* initially.
*
* @see https://api.highcharts.com/highcharts/series.solidgauge.data.selected
* @see https://api.highcharts.com/highstock/series.solidgauge.data.selected
* @see https://api.highcharts.com/gantt/series.solidgauge.data.selected
*
* @implspec selected?: boolean;
*
*/
@JSProperty("selected")
boolean getSelected();
/**
* (Highcharts, Highstock, Gantt) Whether the data point is selected
* initially.
*
* @see https://api.highcharts.com/highcharts/series.solidgauge.data.selected
* @see https://api.highcharts.com/highstock/series.solidgauge.data.selected
* @see https://api.highcharts.com/gantt/series.solidgauge.data.selected
*
* @implspec selected?: boolean;
*
*/
@JSProperty("selected")
void setSelected(boolean value);
/**
* (Highcharts, Highstock) The y value of the point.
*
* @see https://api.highcharts.com/highcharts/series.solidgauge.data.y
* @see https://api.highcharts.com/highstock/series.solidgauge.data.y
*
* @implspec y?: number;
*
*/
@JSProperty("y")
double getY();
/**
* (Highcharts, Highstock) The y value of the point.
*
* @see https://api.highcharts.com/highcharts/series.solidgauge.data.y
* @see https://api.highcharts.com/highstock/series.solidgauge.data.y
*
* @implspec y?: number;
*
*/
@JSProperty("y")
void setY(double value);
}