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

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

/**
 * (Highcharts, Highstock) A wrapper object for all the series options in
 * specific states.
 *
 * @see https://api.highcharts.com/highcharts/plotOptions.columnrange.states
 * @see https://api.highcharts.com/highstock/plotOptions.columnrange.states
 *
 */
public interface PlotColumnrangeStatesOptions extends Any {
  /**
   * (Highcharts, Highstock, Gantt) Options for the hovered point. These
   * settings override the normal state options when a point is moused over or
   * touched.
   *
   * @see https://api.highcharts.com/highcharts/plotOptions.columnrange.states.hover
   * @see https://api.highcharts.com/highstock/plotOptions.columnrange.states.hover
   * @see https://api.highcharts.com/gantt/plotOptions.columnrange.states.hover
   *
   * @implspec hover?: PlotColumnrangeStatesHoverOptions;
   *
   */
  @JSProperty("hover")
  @Nullable
  PlotColumnrangeStatesHoverOptions getHover();

  /**
   * (Highcharts, Highstock, Gantt) Options for the hovered point. These
   * settings override the normal state options when a point is moused over or
   * touched.
   *
   * @see https://api.highcharts.com/highcharts/plotOptions.columnrange.states.hover
   * @see https://api.highcharts.com/highstock/plotOptions.columnrange.states.hover
   * @see https://api.highcharts.com/gantt/plotOptions.columnrange.states.hover
   *
   * @implspec hover?: PlotColumnrangeStatesHoverOptions;
   *
   */
  @JSProperty("hover")
  void setHover(PlotColumnrangeStatesHoverOptions value);

  /**
   * (Highmaps) Overrides for the normal state.
   *
   * @see https://api.highcharts.com/highmaps/plotOptions.columnrange.states.normal
   *
   * @implspec normal?: PlotColumnrangeStatesNormalOptions;
   *
   */
  @JSProperty("normal")
  @Nullable
  PlotColumnrangeStatesNormalOptions getNormal();

  /**
   * (Highmaps) Overrides for the normal state.
   *
   * @see https://api.highcharts.com/highmaps/plotOptions.columnrange.states.normal
   *
   * @implspec normal?: PlotColumnrangeStatesNormalOptions;
   *
   */
  @JSProperty("normal")
  void setNormal(PlotColumnrangeStatesNormalOptions value);

  /**
   * (Highcharts, Highstock, Gantt) Options for the selected point. These
   * settings override the normal state options when a point is selected.
   *
   * @see https://api.highcharts.com/highcharts/plotOptions.columnrange.states.select
   * @see https://api.highcharts.com/highstock/plotOptions.columnrange.states.select
   * @see https://api.highcharts.com/gantt/plotOptions.columnrange.states.select
   *
   * @implspec select?: PlotColumnrangeStatesSelectOptions;
   *
   */
  @JSProperty("select")
  @Nullable
  PlotColumnrangeStatesSelectOptions getSelect();

  /**
   * (Highcharts, Highstock, Gantt) Options for the selected point. These
   * settings override the normal state options when a point is selected.
   *
   * @see https://api.highcharts.com/highcharts/plotOptions.columnrange.states.select
   * @see https://api.highcharts.com/highstock/plotOptions.columnrange.states.select
   * @see https://api.highcharts.com/gantt/plotOptions.columnrange.states.select
   *
   * @implspec select?: PlotColumnrangeStatesSelectOptions;
   *
   */
  @JSProperty("select")
  void setSelect(PlotColumnrangeStatesSelectOptions value);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy