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

com.github.fluorumlabs.disconnect.highcharts.PlotHistogramStatesOptions 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) A wrapper object for all the series options in specific states.
 *
 * @see https://api.highcharts.com/highcharts/plotOptions.histogram.states
 *
 */
public interface PlotHistogramStatesOptions 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.histogram.states.hover
   * @see https://api.highcharts.com/highstock/plotOptions.histogram.states.hover
   * @see https://api.highcharts.com/gantt/plotOptions.histogram.states.hover
   *
   * @implspec hover?: PlotHistogramStatesHoverOptions;
   *
   */
  @JSProperty("hover")
  @Nullable
  PlotHistogramStatesHoverOptions 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.histogram.states.hover
   * @see https://api.highcharts.com/highstock/plotOptions.histogram.states.hover
   * @see https://api.highcharts.com/gantt/plotOptions.histogram.states.hover
   *
   * @implspec hover?: PlotHistogramStatesHoverOptions;
   *
   */
  @JSProperty("hover")
  void setHover(PlotHistogramStatesHoverOptions value);

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

  /**
   * (Highmaps) Overrides for the normal state.
   *
   * @see https://api.highcharts.com/highmaps/plotOptions.histogram.states.normal
   *
   * @implspec normal?: PlotHistogramStatesNormalOptions;
   *
   */
  @JSProperty("normal")
  void setNormal(PlotHistogramStatesNormalOptions 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.histogram.states.select
   * @see https://api.highcharts.com/highstock/plotOptions.histogram.states.select
   * @see https://api.highcharts.com/gantt/plotOptions.histogram.states.select
   *
   * @implspec select?: PlotHistogramStatesSelectOptions;
   *
   */
  @JSProperty("select")
  @Nullable
  PlotHistogramStatesSelectOptions 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.histogram.states.select
   * @see https://api.highcharts.com/highstock/plotOptions.histogram.states.select
   * @see https://api.highcharts.com/gantt/plotOptions.histogram.states.select
   *
   * @implspec select?: PlotHistogramStatesSelectOptions;
   *
   */
  @JSProperty("select")
  void setSelect(PlotHistogramStatesSelectOptions value);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy