![JAR search and dependency download from the Maven repository](/logo.png)
com.github.fluorumlabs.disconnect.highcharts.PlotPolygonStatesOptions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of disconnect-highcharts Show documentation
Show all versions of disconnect-highcharts Show documentation
Highcharts API bindings for Disconnect Zero
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.polygon.states
* @see https://api.highcharts.com/highstock/plotOptions.polygon.states
*
*/
public interface PlotPolygonStatesOptions 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.polygon.states.hover
* @see https://api.highcharts.com/highstock/plotOptions.polygon.states.hover
*
* @implspec hover?: PlotPolygonStatesHoverOptions;
*
*/
@JSProperty("hover")
@Nullable
PlotPolygonStatesHoverOptions 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.polygon.states.hover
* @see https://api.highcharts.com/highstock/plotOptions.polygon.states.hover
*
* @implspec hover?: PlotPolygonStatesHoverOptions;
*
*/
@JSProperty("hover")
void setHover(PlotPolygonStatesHoverOptions value);
/**
* (Highmaps) Overrides for the normal state.
*
* @see https://api.highcharts.com/highmaps/plotOptions.polygon.states.normal
*
* @implspec normal?: PlotPolygonStatesNormalOptions;
*
*/
@JSProperty("normal")
@Nullable
PlotPolygonStatesNormalOptions getNormal();
/**
* (Highmaps) Overrides for the normal state.
*
* @see https://api.highcharts.com/highmaps/plotOptions.polygon.states.normal
*
* @implspec normal?: PlotPolygonStatesNormalOptions;
*
*/
@JSProperty("normal")
void setNormal(PlotPolygonStatesNormalOptions value);
/**
* (Highmaps) Specific options for point in selected states, after being
* selected by allowPointSelect or programmatically.
*
* @see https://api.highcharts.com/highmaps/plotOptions.polygon.states.select
*
* @implspec select?: PlotPolygonStatesSelectOptions;
*
*/
@JSProperty("select")
@Nullable
PlotPolygonStatesSelectOptions getSelect();
/**
* (Highmaps) Specific options for point in selected states, after being
* selected by allowPointSelect or programmatically.
*
* @see https://api.highcharts.com/highmaps/plotOptions.polygon.states.select
*
* @implspec select?: PlotPolygonStatesSelectOptions;
*
*/
@JSProperty("select")
void setSelect(PlotPolygonStatesSelectOptions value);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy