com.github.fluorumlabs.disconnect.highcharts.PlotSeriesPointOptions 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, Highmaps) Properties for each single point.
*
* @see https://api.highcharts.com/highcharts/plotOptions.series.point
* @see https://api.highcharts.com/highstock/plotOptions.series.point
* @see https://api.highcharts.com/highmaps/plotOptions.series.point
*
*/
public interface PlotSeriesPointOptions extends Any {
/**
* (Highcharts, Highstock, Highmaps) Events for each single point.
*
* @see https://api.highcharts.com/highcharts/plotOptions.series.point.events
* @see https://api.highcharts.com/highstock/plotOptions.series.point.events
* @see https://api.highcharts.com/highmaps/plotOptions.series.point.events
*
* @implspec events?: PlotSeriesPointEventsOptions;
*
*/
@JSProperty("events")
@Nullable
PlotSeriesPointEventsOptions getEvents();
/**
* (Highcharts, Highstock, Highmaps) Events for each single point.
*
* @see https://api.highcharts.com/highcharts/plotOptions.series.point.events
* @see https://api.highcharts.com/highstock/plotOptions.series.point.events
* @see https://api.highcharts.com/highmaps/plotOptions.series.point.events
*
* @implspec events?: PlotSeriesPointEventsOptions;
*
*/
@JSProperty("events")
void setEvents(PlotSeriesPointEventsOptions value);
}