com.github.fluorumlabs.disconnect.highcharts.PlotPivotpointsStatesOptions 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;
/**
* (Highstock) A wrapper object for all the series options in specific states.
*
* @see https://api.highcharts.com/highstock/plotOptions.pivotpoints.states
*
*/
public interface PlotPivotpointsStatesOptions extends Any {
/**
* (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/highstock/plotOptions.pivotpoints.states.hover
*
* @implspec hover?: PlotPivotpointsStatesHoverOptions;
*
*/
@JSProperty("hover")
@Nullable
PlotPivotpointsStatesHoverOptions getHover();
/**
* (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/highstock/plotOptions.pivotpoints.states.hover
*
* @implspec hover?: PlotPivotpointsStatesHoverOptions;
*
*/
@JSProperty("hover")
void setHover(PlotPivotpointsStatesHoverOptions value);
/**
* (Highmaps) Overrides for the normal state.
*
* @see https://api.highcharts.com/highmaps/plotOptions.pivotpoints.states.normal
*
* @implspec normal?: PlotPivotpointsStatesNormalOptions;
*
*/
@JSProperty("normal")
@Nullable
PlotPivotpointsStatesNormalOptions getNormal();
/**
* (Highmaps) Overrides for the normal state.
*
* @see https://api.highcharts.com/highmaps/plotOptions.pivotpoints.states.normal
*
* @implspec normal?: PlotPivotpointsStatesNormalOptions;
*
*/
@JSProperty("normal")
void setNormal(PlotPivotpointsStatesNormalOptions value);
/**
* (Highmaps) Specific options for point in selected states, after being
* selected by allowPointSelect or programmatically.
*
* @see https://api.highcharts.com/highmaps/plotOptions.pivotpoints.states.select
*
* @implspec select?: PlotPivotpointsStatesSelectOptions;
*
*/
@JSProperty("select")
@Nullable
PlotPivotpointsStatesSelectOptions getSelect();
/**
* (Highmaps) Specific options for point in selected states, after being
* selected by allowPointSelect or programmatically.
*
* @see https://api.highcharts.com/highmaps/plotOptions.pivotpoints.states.select
*
* @implspec select?: PlotPivotpointsStatesSelectOptions;
*
*/
@JSProperty("select")
void setSelect(PlotPivotpointsStatesSelectOptions value);
}