![JAR search and dependency download from the Maven repository](/logo.png)
com.github.fluorumlabs.disconnect.highcharts.PlotParetoStatesOptions 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.pareto.states
*
*/
public interface PlotParetoStatesOptions 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.pareto.states.hover
*
* @implspec hover?: PlotParetoStatesHoverOptions;
*
*/
@JSProperty("hover")
@Nullable
PlotParetoStatesHoverOptions 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.pareto.states.hover
*
* @implspec hover?: PlotParetoStatesHoverOptions;
*
*/
@JSProperty("hover")
void setHover(PlotParetoStatesHoverOptions value);
/**
* (Highmaps) Overrides for the normal state.
*
* @see https://api.highcharts.com/highmaps/plotOptions.pareto.states.normal
*
* @implspec normal?: PlotParetoStatesNormalOptions;
*
*/
@JSProperty("normal")
@Nullable
PlotParetoStatesNormalOptions getNormal();
/**
* (Highmaps) Overrides for the normal state.
*
* @see https://api.highcharts.com/highmaps/plotOptions.pareto.states.normal
*
* @implspec normal?: PlotParetoStatesNormalOptions;
*
*/
@JSProperty("normal")
void setNormal(PlotParetoStatesNormalOptions value);
/**
* (Highmaps) Specific options for point in selected states, after being
* selected by allowPointSelect or programmatically.
*
* @see https://api.highcharts.com/highmaps/plotOptions.pareto.states.select
*
* @implspec select?: PlotParetoStatesSelectOptions;
*
*/
@JSProperty("select")
@Nullable
PlotParetoStatesSelectOptions getSelect();
/**
* (Highmaps) Specific options for point in selected states, after being
* selected by allowPointSelect or programmatically.
*
* @see https://api.highcharts.com/highmaps/plotOptions.pareto.states.select
*
* @implspec select?: PlotParetoStatesSelectOptions;
*
*/
@JSProperty("select")
void setSelect(PlotParetoStatesSelectOptions value);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy