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

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

There is a newer version: 0.1.0-alpha2
Show newest version
package com.github.fluorumlabs.disconnect.highcharts;

import javax.annotation.Nullable;
import js.lang.Any;
import org.teavm.jso.JSProperty;

/**
 * (Gantt) Style options for the guide box. The guide box has one state by
 * default, the default state.
 *
 * @see https://api.highcharts.com/gantt/plotOptions.gantt.dragDrop.guideBox
 *
 */
public interface PlotGanttDragDropGuideBoxOptions extends Any {
  /**
   * (Gantt) Style options for the guide box default state.
   *
   * @see https://api.highcharts.com/gantt/plotOptions.gantt.dragDrop.guideBox.default
   *
   * @implspec default?: PlotGanttDragDropGuideBoxDefaultOptions;
   *
   */
  @JSProperty("default")
  @Nullable
  PlotGanttDragDropGuideBoxDefaultOptions getDefault();

  /**
   * (Gantt) Style options for the guide box default state.
   *
   * @see https://api.highcharts.com/gantt/plotOptions.gantt.dragDrop.guideBox.default
   *
   * @implspec default?: PlotGanttDragDropGuideBoxDefaultOptions;
   *
   */
  @JSProperty("default")
  void setDefault(PlotGanttDragDropGuideBoxDefaultOptions value);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy