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

com.github.fluorumlabs.disconnect.highcharts.PlotLineStatesOptions 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.line.states
 * @see https://api.highcharts.com/highstock/plotOptions.line.states
 *
 */
public interface PlotLineStatesOptions extends Any {
  /**
   * (Highcharts, Highstock) Options for the hovered series. These settings
   * override the normal state options when a series is moused over or
   * touched.
   *
   * @see https://api.highcharts.com/highcharts/plotOptions.line.states.hover
   * @see https://api.highcharts.com/highstock/plotOptions.line.states.hover
   *
   * @implspec hover?: PlotLineStatesHoverOptions;
   *
   */
  @JSProperty("hover")
  @Nullable
  PlotLineStatesHoverOptions getHover();

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

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

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

  /**
   * (Highmaps) Specific options for point in selected states, after being
   * selected by allowPointSelect or programmatically.
   *
   * @see https://api.highcharts.com/highmaps/plotOptions.line.states.select
   *
   * @implspec select?: PlotLineStatesSelectOptions;
   *
   */
  @JSProperty("select")
  @Nullable
  PlotLineStatesSelectOptions getSelect();

  /**
   * (Highmaps) Specific options for point in selected states, after being
   * selected by allowPointSelect or programmatically.
   *
   * @see https://api.highcharts.com/highmaps/plotOptions.line.states.select
   *
   * @implspec select?: PlotLineStatesSelectOptions;
   *
   */
  @JSProperty("select")
  void setSelect(PlotLineStatesSelectOptions value);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy