All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.fluorumlabs.disconnect.highcharts.PlotGanttPartialFillOptions Maven / Gradle / Ivy

There is a newer version: 0.1.0-alpha2
Show newest version
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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy