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