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