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

com.github.fluorumlabs.disconnect.highcharts.PlotTreemapStatesOptions 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.treemap.states
 *
 */
public interface PlotTreemapStatesOptions extends Any {
  /**
   * (Highcharts) Options for the hovered series
   *
   * @see https://api.highcharts.com/highcharts/plotOptions.treemap.states.hover
   *
   * @implspec hover?: PlotTreemapStatesHoverOptions;
   *
   */
  @JSProperty("hover")
  @Nullable
  PlotTreemapStatesHoverOptions getHover();

  /**
   * (Highcharts) Options for the hovered series
   *
   * @see https://api.highcharts.com/highcharts/plotOptions.treemap.states.hover
   *
   * @implspec hover?: PlotTreemapStatesHoverOptions;
   *
   */
  @JSProperty("hover")
  void setHover(PlotTreemapStatesHoverOptions value);

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

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy