com.github.fluorumlabs.disconnect.highcharts.SeriesGanttDataCompletedOptions 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;
/**
* (Gantt) Progress indicator, how much of the task completed. If it is a
* number, the fill
will be applied automatically.
*
* @see https://api.highcharts.com/gantt/series.gantt.data.completed
*
*/
public interface SeriesGanttDataCompletedOptions extends Any {
/**
* (Highcharts, Highstock, Gantt) The amount of the progress indicator,
* ranging from 0 (not started) to 1 (finished).
*
* @see https://api.highcharts.com/highcharts/series.gantt.data.completed.amount
* @see https://api.highcharts.com/highstock/series.gantt.data.completed.amount
* @see https://api.highcharts.com/gantt/series.gantt.data.completed.amount
*
* @implspec amount?: number;
*
*/
@JSProperty("amount")
double getAmount();
/**
* (Highcharts, Highstock, Gantt) The amount of the progress indicator,
* ranging from 0 (not started) to 1 (finished).
*
* @see https://api.highcharts.com/highcharts/series.gantt.data.completed.amount
* @see https://api.highcharts.com/highstock/series.gantt.data.completed.amount
* @see https://api.highcharts.com/gantt/series.gantt.data.completed.amount
*
* @implspec amount?: number;
*
*/
@JSProperty("amount")
void setAmount(double value);
/**
* (Highcharts, Highstock, Gantt) The fill of the progress indicator.
* Defaults to a darkened variety of the main color.
*
* @see https://api.highcharts.com/highcharts/series.gantt.data.completed.fill
* @see https://api.highcharts.com/highstock/series.gantt.data.completed.fill
* @see https://api.highcharts.com/gantt/series.gantt.data.completed.fill
*
* @implspec fill?: (ColorString|GradientColorObject);
*
*/
@JSProperty("fill")
@Nullable
Unknown getFill();
/**
* (Highcharts, Highstock, Gantt) The fill of the progress indicator.
* Defaults to a darkened variety of the main color.
*
* @see https://api.highcharts.com/highcharts/series.gantt.data.completed.fill
* @see https://api.highcharts.com/highstock/series.gantt.data.completed.fill
* @see https://api.highcharts.com/gantt/series.gantt.data.completed.fill
*
* @implspec fill?: (ColorString|GradientColorObject);
*
*/
@JSProperty("fill")
void setFill(GradientColorObject value);
/**
* (Highcharts, Highstock, Gantt) The fill of the progress indicator.
* Defaults to a darkened variety of the main color.
*
* @see https://api.highcharts.com/highcharts/series.gantt.data.completed.fill
* @see https://api.highcharts.com/highstock/series.gantt.data.completed.fill
* @see https://api.highcharts.com/gantt/series.gantt.data.completed.fill
*
* @implspec fill?: (ColorString|GradientColorObject);
*
*/
@JSProperty("fill")
void setFill(String value);
}