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

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

/**
 * (Highmaps) A wrapper object for all the series options in specific states.
 *
 * @see https://api.highcharts.com/highmaps/plotOptions.mapline.states
 *
 */
public interface PlotMaplineStatesOptions extends Any {
  /**
   * (Highmaps) 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/highmaps/plotOptions.mapline.states.hover
   *
   * @implspec hover?: PlotMaplineStatesHoverOptions;
   *
   */
  @JSProperty("hover")
  @Nullable
  PlotMaplineStatesHoverOptions getHover();

  /**
   * (Highmaps) 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/highmaps/plotOptions.mapline.states.hover
   *
   * @implspec hover?: PlotMaplineStatesHoverOptions;
   *
   */
  @JSProperty("hover")
  void setHover(PlotMaplineStatesHoverOptions value);

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

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy