![JAR search and dependency download from the Maven repository](/logo.png)
com.github.fluorumlabs.disconnect.highcharts.PlotWordcloudStatesOptions 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) A wrapper object for all the series options in specific states.
*
* @see https://api.highcharts.com/highcharts/plotOptions.wordcloud.states
*
*/
public interface PlotWordcloudStatesOptions extends Any {
/**
* (Highcharts, Highstock, Gantt) Options for the hovered point. These
* settings override the normal state options when a point is moused over or
* touched.
*
* @see https://api.highcharts.com/highcharts/plotOptions.wordcloud.states.hover
* @see https://api.highcharts.com/highstock/plotOptions.wordcloud.states.hover
* @see https://api.highcharts.com/gantt/plotOptions.wordcloud.states.hover
*
* @implspec hover?: PlotWordcloudStatesHoverOptions;
*
*/
@JSProperty("hover")
@Nullable
PlotWordcloudStatesHoverOptions getHover();
/**
* (Highcharts, Highstock, Gantt) Options for the hovered point. These
* settings override the normal state options when a point is moused over or
* touched.
*
* @see https://api.highcharts.com/highcharts/plotOptions.wordcloud.states.hover
* @see https://api.highcharts.com/highstock/plotOptions.wordcloud.states.hover
* @see https://api.highcharts.com/gantt/plotOptions.wordcloud.states.hover
*
* @implspec hover?: PlotWordcloudStatesHoverOptions;
*
*/
@JSProperty("hover")
void setHover(PlotWordcloudStatesHoverOptions value);
/**
* (Highmaps) Overrides for the normal state.
*
* @see https://api.highcharts.com/highmaps/plotOptions.wordcloud.states.normal
*
* @implspec normal?: PlotWordcloudStatesNormalOptions;
*
*/
@JSProperty("normal")
@Nullable
PlotWordcloudStatesNormalOptions getNormal();
/**
* (Highmaps) Overrides for the normal state.
*
* @see https://api.highcharts.com/highmaps/plotOptions.wordcloud.states.normal
*
* @implspec normal?: PlotWordcloudStatesNormalOptions;
*
*/
@JSProperty("normal")
void setNormal(PlotWordcloudStatesNormalOptions value);
/**
* (Highcharts, Highstock, Gantt) Options for the selected point. These
* settings override the normal state options when a point is selected.
*
* @see https://api.highcharts.com/highcharts/plotOptions.wordcloud.states.select
* @see https://api.highcharts.com/highstock/plotOptions.wordcloud.states.select
* @see https://api.highcharts.com/gantt/plotOptions.wordcloud.states.select
*
* @implspec select?: PlotWordcloudStatesSelectOptions;
*
*/
@JSProperty("select")
@Nullable
PlotWordcloudStatesSelectOptions getSelect();
/**
* (Highcharts, Highstock, Gantt) Options for the selected point. These
* settings override the normal state options when a point is selected.
*
* @see https://api.highcharts.com/highcharts/plotOptions.wordcloud.states.select
* @see https://api.highcharts.com/highstock/plotOptions.wordcloud.states.select
* @see https://api.highcharts.com/gantt/plotOptions.wordcloud.states.select
*
* @implspec select?: PlotWordcloudStatesSelectOptions;
*
*/
@JSProperty("select")
void setSelect(PlotWordcloudStatesSelectOptions value);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy