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

com.github.fluorumlabs.disconnect.highcharts.PlotSplineStatesOptions 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.spline.states
 * @see https://api.highcharts.com/highstock/plotOptions.spline.states
 *
 */
public interface PlotSplineStatesOptions 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.spline.states.hover
   * @see https://api.highcharts.com/highstock/plotOptions.spline.states.hover
   *
   * @implspec hover?: PlotSplineStatesHoverOptions;
   *
   */
  @JSProperty("hover")
  @Nullable
  PlotSplineStatesHoverOptions 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.spline.states.hover
   * @see https://api.highcharts.com/highstock/plotOptions.spline.states.hover
   *
   * @implspec hover?: PlotSplineStatesHoverOptions;
   *
   */
  @JSProperty("hover")
  void setHover(PlotSplineStatesHoverOptions value);

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

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy