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