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

com.github.fluorumlabs.disconnect.highcharts.SeriesGanttDataCompletedOptions 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 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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy