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

com.github.fluorumlabs.disconnect.highcharts.PlotWindbarbPointOptions 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) Properties for each single point.
 *
 * @see https://api.highcharts.com/highcharts/plotOptions.windbarb.point
 * @see https://api.highcharts.com/highstock/plotOptions.windbarb.point
 *
 */
public interface PlotWindbarbPointOptions extends Any {
  /**
   * (Highcharts, Highstock) Events for each single point.
   *
   * @see https://api.highcharts.com/highcharts/plotOptions.windbarb.point.events
   * @see https://api.highcharts.com/highstock/plotOptions.windbarb.point.events
   *
   * @implspec events?: PlotWindbarbPointEventsOptions;
   *
   */
  @JSProperty("events")
  @Nullable
  PlotWindbarbPointEventsOptions getEvents();

  /**
   * (Highcharts, Highstock) Events for each single point.
   *
   * @see https://api.highcharts.com/highcharts/plotOptions.windbarb.point.events
   * @see https://api.highcharts.com/highstock/plotOptions.windbarb.point.events
   *
   * @implspec events?: PlotWindbarbPointEventsOptions;
   *
   */
  @JSProperty("events")
  void setEvents(PlotWindbarbPointEventsOptions value);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy