All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.fluorumlabs.disconnect.highcharts.PlotSeriesPointOptions Maven / Gradle / Ivy

There is a newer version: 0.1.0-alpha2
Show newest version
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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy