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

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

  /**
   * (Highcharts, 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/highcharts/plotOptions.heatmap.states.hover
   * @see https://api.highcharts.com/highmaps/plotOptions.heatmap.states.hover
   *
   * @implspec hover?: PlotHeatmapStatesHoverOptions;
   *
   */
  @JSProperty("hover")
  void setHover(PlotHeatmapStatesHoverOptions value);

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

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy