com.github.fluorumlabs.disconnect.highcharts.PlotVariwideStatesOptions 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.variwide.states
*
*/
public interface PlotVariwideStatesOptions 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.variwide.states.hover
* @see https://api.highcharts.com/highstock/plotOptions.variwide.states.hover
* @see https://api.highcharts.com/gantt/plotOptions.variwide.states.hover
*
* @implspec hover?: PlotVariwideStatesHoverOptions;
*
*/
@JSProperty("hover")
@Nullable
PlotVariwideStatesHoverOptions 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.variwide.states.hover
* @see https://api.highcharts.com/highstock/plotOptions.variwide.states.hover
* @see https://api.highcharts.com/gantt/plotOptions.variwide.states.hover
*
* @implspec hover?: PlotVariwideStatesHoverOptions;
*
*/
@JSProperty("hover")
void setHover(PlotVariwideStatesHoverOptions value);
/**
* (Highmaps) Overrides for the normal state.
*
* @see https://api.highcharts.com/highmaps/plotOptions.variwide.states.normal
*
* @implspec normal?: PlotVariwideStatesNormalOptions;
*
*/
@JSProperty("normal")
@Nullable
PlotVariwideStatesNormalOptions getNormal();
/**
* (Highmaps) Overrides for the normal state.
*
* @see https://api.highcharts.com/highmaps/plotOptions.variwide.states.normal
*
* @implspec normal?: PlotVariwideStatesNormalOptions;
*
*/
@JSProperty("normal")
void setNormal(PlotVariwideStatesNormalOptions 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.variwide.states.select
* @see https://api.highcharts.com/highstock/plotOptions.variwide.states.select
* @see https://api.highcharts.com/gantt/plotOptions.variwide.states.select
*
* @implspec select?: PlotVariwideStatesSelectOptions;
*
*/
@JSProperty("select")
@Nullable
PlotVariwideStatesSelectOptions 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.variwide.states.select
* @see https://api.highcharts.com/highstock/plotOptions.variwide.states.select
* @see https://api.highcharts.com/gantt/plotOptions.variwide.states.select
*
* @implspec select?: PlotVariwideStatesSelectOptions;
*
*/
@JSProperty("select")
void setSelect(PlotVariwideStatesSelectOptions value);
}