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

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

  /**
   * (Highcharts) 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.funnel.states.hover
   *
   * @implspec hover?: PlotFunnelStatesHoverOptions;
   *
   */
  @JSProperty("hover")
  void setHover(PlotFunnelStatesHoverOptions value);

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

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

  /**
   * (Highmaps) Options for a selected funnel item.
   *
   * @see https://api.highcharts.com/highmaps/plotOptions.funnel.states.select
   *
   * @implspec select?: PlotFunnelStatesSelectOptions;
   *
   */
  @JSProperty("select")
  @Nullable
  PlotFunnelStatesSelectOptions getSelect();

  /**
   * (Highmaps) Options for a selected funnel item.
   *
   * @see https://api.highcharts.com/highmaps/plotOptions.funnel.states.select
   *
   * @implspec select?: PlotFunnelStatesSelectOptions;
   *
   */
  @JSProperty("select")
  void setSelect(PlotFunnelStatesSelectOptions value);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy