com.github.fluorumlabs.disconnect.highcharts.SeriesGanttOptions 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.extras.JsEnum;
import js.util.collections.Array;
import org.teavm.jso.JSProperty;
/**
* (Gantt) A gantt
series.
*
* Configuration options for the series are given in three levels:
*
*
* -
* Options for all series in a chart are defined in the plotOptions.series
* object.
*
*
* -
* Options for all
gantt
series are defined in plotOptions.gantt.
*
*
* -
* Options for one single series are given in the series instance array.
*
*
*
* (see online documentation for example)
*
* @see https://api.highcharts.com/gantt/series.gantt
*
*/
public interface SeriesGanttOptions extends PlotGanttOptions, SeriesOptions {
/**
* (Gantt) Data for a Gantt series.
*
* @see https://api.highcharts.com/gantt/series.gantt.data
*
* @implspec data?: Array;
*
*/
@JSProperty("data")
@Nullable
Array getData();
/**
* (Gantt) Data for a Gantt series.
*
* @see https://api.highcharts.com/gantt/series.gantt.data
*
* @implspec data?: Array;
*
*/
@JSProperty("data")
void setData(Array value);
/**
* (Highcharts, Highstock, Highmaps) This property is only in TypeScript
* non-optional and might be undefined
in series objects from unknown
* sources.
*
* @implspec type: "gantt";
*
*/
@JSProperty("type")
Type getType();
/**
* (Highcharts, Highstock, Highmaps) This property is only in TypeScript
* non-optional and might be undefined
in series objects from unknown
* sources.
*
* @implspec type: "gantt";
*
*/
@JSProperty("type")
void setType(Type value);
/**
*/
abstract class Type extends JsEnum {
public static final Type GANTT = JsEnum.of("gantt");
}
}