![JAR search and dependency download from the Maven repository](/logo.png)
com.github.fluorumlabs.disconnect.highcharts.PlotXrangePointOptions 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, Highstock, Gantt) Properties for each single point.
*
* @see https://api.highcharts.com/highcharts/plotOptions.xrange.point
* @see https://api.highcharts.com/highstock/plotOptions.xrange.point
* @see https://api.highcharts.com/gantt/plotOptions.xrange.point
*
*/
public interface PlotXrangePointOptions extends Any {
/**
* (Highcharts, Highstock, Gantt) Events for each single point.
*
* @see https://api.highcharts.com/highcharts/plotOptions.xrange.point.events
* @see https://api.highcharts.com/highstock/plotOptions.xrange.point.events
* @see https://api.highcharts.com/gantt/plotOptions.xrange.point.events
*
* @implspec events?: PlotXrangePointEventsOptions;
*
*/
@JSProperty("events")
@Nullable
PlotXrangePointEventsOptions getEvents();
/**
* (Highcharts, Highstock, Gantt) Events for each single point.
*
* @see https://api.highcharts.com/highcharts/plotOptions.xrange.point.events
* @see https://api.highcharts.com/highstock/plotOptions.xrange.point.events
* @see https://api.highcharts.com/gantt/plotOptions.xrange.point.events
*
* @implspec events?: PlotXrangePointEventsOptions;
*
*/
@JSProperty("events")
void setEvents(PlotXrangePointEventsOptions value);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy