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