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

com.github.fluorumlabs.disconnect.highcharts.PlotAdDragDropGuideBoxOptions 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;

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy