com.github.fluorumlabs.disconnect.highcharts.PlotGanttPartialFillOptions 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;
/**
* (Gantt) A partial fill for each point, typically used to visualize how much
* of a task is performed. See completed.
*
* @see https://api.highcharts.com/gantt/plotOptions.gantt.partialFill
*
*/
public interface PlotGanttPartialFillOptions extends Any {
/**
* (Highcharts, Highstock, Gantt) The fill color to be used for partial
* fills. Defaults to a darker shade of the point color.
*
* @see https://api.highcharts.com/highcharts/plotOptions.gantt.partialFill.fill
* @see https://api.highcharts.com/highstock/plotOptions.gantt.partialFill.fill
* @see https://api.highcharts.com/gantt/plotOptions.gantt.partialFill.fill
*
* @implspec fill?: ColorString;
*
*/
@JSProperty("fill")
@Nullable
String getFill();
/**
* (Highcharts, Highstock, Gantt) The fill color to be used for partial
* fills. Defaults to a darker shade of the point color.
*
* @see https://api.highcharts.com/highcharts/plotOptions.gantt.partialFill.fill
* @see https://api.highcharts.com/highstock/plotOptions.gantt.partialFill.fill
* @see https://api.highcharts.com/gantt/plotOptions.gantt.partialFill.fill
*
* @implspec fill?: ColorString;
*
*/
@JSProperty("fill")
void setFill(String value);
}