com.github.fluorumlabs.disconnect.highcharts.PlotPieStatesOptions 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.pie.states
*
*/
public interface PlotPieStatesOptions 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.pie.states.hover
*
* @implspec hover?: PlotPieStatesHoverOptions;
*
*/
@JSProperty("hover")
@Nullable
PlotPieStatesHoverOptions 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.pie.states.hover
*
* @implspec hover?: PlotPieStatesHoverOptions;
*
*/
@JSProperty("hover")
void setHover(PlotPieStatesHoverOptions value);
/**
* (Highmaps) Overrides for the normal state.
*
* @see https://api.highcharts.com/highmaps/plotOptions.pie.states.normal
*
* @implspec normal?: PlotPieStatesNormalOptions;
*
*/
@JSProperty("normal")
@Nullable
PlotPieStatesNormalOptions getNormal();
/**
* (Highmaps) Overrides for the normal state.
*
* @see https://api.highcharts.com/highmaps/plotOptions.pie.states.normal
*
* @implspec normal?: PlotPieStatesNormalOptions;
*
*/
@JSProperty("normal")
void setNormal(PlotPieStatesNormalOptions value);
/**
* (Highmaps) Specific options for point in selected states, after being
* selected by allowPointSelect or programmatically.
*
* @see https://api.highcharts.com/highmaps/plotOptions.pie.states.select
*
* @implspec select?: PlotPieStatesSelectOptions;
*
*/
@JSProperty("select")
@Nullable
PlotPieStatesSelectOptions getSelect();
/**
* (Highmaps) Specific options for point in selected states, after being
* selected by allowPointSelect or programmatically.
*
* @see https://api.highcharts.com/highmaps/plotOptions.pie.states.select
*
* @implspec select?: PlotPieStatesSelectOptions;
*
*/
@JSProperty("select")
void setSelect(PlotPieStatesSelectOptions value);
}