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

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

There is a newer version: 0.1.0-alpha2
Show newest version
package com.github.fluorumlabs.disconnect.highcharts;

import java.lang.FunctionalInterface;
import javax.annotation.Nullable;
import js.lang.Any;
import org.teavm.jso.JSFunctor;
import org.teavm.jso.JSProperty;

/**
 * (Highcharts, Highstock, Gantt) Individual point events
 *
 * @see https://api.highcharts.com/highcharts/series.bar.data.events
 * @see https://api.highcharts.com/highstock/series.bar.data.events
 * @see https://api.highcharts.com/gantt/series.bar.data.events
 *
 */
public interface SeriesBarDataEventsOptions extends Any {
  /**
   * (Highcharts, Highstock, Highmaps) Fires when a point is clicked. One
   * parameter, event, is passed to the function, containing common event
   * information.
   *
   * If the series.allowPointSelect option is true, the default action for
   * the point's click event is to toggle the point's select state. Returning
   * false cancels this action.
   *
   * @see https://api.highcharts.com/highcharts/series.bar.data.events.click
   * @see https://api.highcharts.com/highstock/series.bar.data.events.click
   * @see https://api.highcharts.com/highmaps/series.bar.data.events.click
   *
   * @implspec click?: SeriesPointClickCallbackFunction;
   *
   */
  @JSProperty("click")
  @Nullable
  SeriesPointClickCallbackFunction getClick();

  /**
   * (Highcharts, Highstock, Highmaps) Fires when a point is clicked. One
   * parameter, event, is passed to the function, containing common event
   * information.
   *
   * If the series.allowPointSelect option is true, the default action for
   * the point's click event is to toggle the point's select state. Returning
   * false cancels this action.
   *
   * @see https://api.highcharts.com/highcharts/series.bar.data.events.click
   * @see https://api.highcharts.com/highstock/series.bar.data.events.click
   * @see https://api.highcharts.com/highmaps/series.bar.data.events.click
   *
   * @implspec click?: SeriesPointClickCallbackFunction;
   *
   */
  @JSProperty("click")
  void setClick(SeriesPointClickCallbackFunction value);

  /**
   * (Highcharts, Highstock, Highmaps) Callback that fires while dragging a
   * point. The mouse event is passed in as parameter. The original data can
   * be accessed from e.origin, and the new point values can be accessed
   * from e.newPoints. If there is only a single point being updated, it can
   * be accessed from e.newPoint for simplicity, and its ID can be accessed
   * from e.newPointId. The this context is the point being dragged. To
   * stop the default drag action, return false. See drag and drop options.
   *
   * Requires the draggable-points module.
   *
   * @see https://api.highcharts.com/highcharts/series.bar.data.events.drag
   * @see https://api.highcharts.com/highstock/series.bar.data.events.drag
   * @see https://api.highcharts.com/highmaps/series.bar.data.events.drag
   *
   * @implspec drag?: SeriesPointDragCallbackFunction;
   *
   */
  @JSProperty("drag")
  @Nullable
  SeriesPointDragCallbackFunction getDrag();

  /**
   * (Highcharts, Highstock, Highmaps) Callback that fires while dragging a
   * point. The mouse event is passed in as parameter. The original data can
   * be accessed from e.origin, and the new point values can be accessed
   * from e.newPoints. If there is only a single point being updated, it can
   * be accessed from e.newPoint for simplicity, and its ID can be accessed
   * from e.newPointId. The this context is the point being dragged. To
   * stop the default drag action, return false. See drag and drop options.
   *
   * Requires the draggable-points module.
   *
   * @see https://api.highcharts.com/highcharts/series.bar.data.events.drag
   * @see https://api.highcharts.com/highstock/series.bar.data.events.drag
   * @see https://api.highcharts.com/highmaps/series.bar.data.events.drag
   *
   * @implspec drag?: SeriesPointDragCallbackFunction;
   *
   */
  @JSProperty("drag")
  void setDrag(SeriesPointDragCallbackFunction value);

  /**
   * (Highcharts, Highstock, Highmaps) Callback that fires when starting to
   * drag a point. The mouse event object is passed in as an argument. If a
   * drag handle is used, e.updateProp is set to the data property being
   * dragged. The this context is the point. See drag and drop options.
   *
   * Requires the draggable-points module.
   *
   * @see https://api.highcharts.com/highcharts/series.bar.data.events.dragStart
   * @see https://api.highcharts.com/highstock/series.bar.data.events.dragStart
   * @see https://api.highcharts.com/highmaps/series.bar.data.events.dragStart
   *
   * @implspec dragStart?: SeriesPointDragStartCallbackFunction;
   *
   */
  @JSProperty("dragStart")
  @Nullable
  SeriesPointDragStartCallbackFunction getDragStart();

  /**
   * (Highcharts, Highstock, Highmaps) Callback that fires when starting to
   * drag a point. The mouse event object is passed in as an argument. If a
   * drag handle is used, e.updateProp is set to the data property being
   * dragged. The this context is the point. See drag and drop options.
   *
   * Requires the draggable-points module.
   *
   * @see https://api.highcharts.com/highcharts/series.bar.data.events.dragStart
   * @see https://api.highcharts.com/highstock/series.bar.data.events.dragStart
   * @see https://api.highcharts.com/highmaps/series.bar.data.events.dragStart
   *
   * @implspec dragStart?: SeriesPointDragStartCallbackFunction;
   *
   */
  @JSProperty("dragStart")
  void setDragStart(SeriesPointDragStartCallbackFunction value);

  /**
   * (Highcharts, Highstock, Highmaps) Callback that fires when the point is
   * dropped. The parameters passed are the same as for drag. To stop the
   * default drop action, return false. See drag and drop options.
   *
   * Requires the draggable-points module.
   *
   * @see https://api.highcharts.com/highcharts/series.bar.data.events.drop
   * @see https://api.highcharts.com/highstock/series.bar.data.events.drop
   * @see https://api.highcharts.com/highmaps/series.bar.data.events.drop
   *
   * @implspec drop?: SeriesPointDropCallbackFunction;
   *
   */
  @JSProperty("drop")
  @Nullable
  SeriesPointDropCallbackFunction getDrop();

  /**
   * (Highcharts, Highstock, Highmaps) Callback that fires when the point is
   * dropped. The parameters passed are the same as for drag. To stop the
   * default drop action, return false. See drag and drop options.
   *
   * Requires the draggable-points module.
   *
   * @see https://api.highcharts.com/highcharts/series.bar.data.events.drop
   * @see https://api.highcharts.com/highstock/series.bar.data.events.drop
   * @see https://api.highcharts.com/highmaps/series.bar.data.events.drop
   *
   * @implspec drop?: SeriesPointDropCallbackFunction;
   *
   */
  @JSProperty("drop")
  void setDrop(SeriesPointDropCallbackFunction value);

  /**
   * (Highcharts, Highstock, Highmaps) Fires when the mouse leaves the area
   * close to the point. One parameter, event, is passed to the function,
   * containing common event information.
   *
   * @see https://api.highcharts.com/highcharts/series.bar.data.events.mouseOut
   * @see https://api.highcharts.com/highstock/series.bar.data.events.mouseOut
   * @see https://api.highcharts.com/highmaps/series.bar.data.events.mouseOut
   *
   * @implspec mouseOut?: () => void;
   *
   */
  @JSProperty("mouseOut")
  @Nullable
  MouseOut getMouseOut();

  /**
   * (Highcharts, Highstock, Highmaps) Fires when the mouse leaves the area
   * close to the point. One parameter, event, is passed to the function,
   * containing common event information.
   *
   * @see https://api.highcharts.com/highcharts/series.bar.data.events.mouseOut
   * @see https://api.highcharts.com/highstock/series.bar.data.events.mouseOut
   * @see https://api.highcharts.com/highmaps/series.bar.data.events.mouseOut
   *
   * @implspec mouseOut?: () => void;
   *
   */
  @JSProperty("mouseOut")
  void setMouseOut(MouseOut value);

  /**
   * (Highcharts, Highstock, Highmaps) Fires when the mouse enters the area
   * close to the point. One parameter, event, is passed to the function,
   * containing common event information.
   *
   * @see https://api.highcharts.com/highcharts/series.bar.data.events.mouseOver
   * @see https://api.highcharts.com/highstock/series.bar.data.events.mouseOver
   * @see https://api.highcharts.com/highmaps/series.bar.data.events.mouseOver
   *
   * @implspec mouseOver?: () => void;
   *
   */
  @JSProperty("mouseOver")
  @Nullable
  MouseOver getMouseOver();

  /**
   * (Highcharts, Highstock, Highmaps) Fires when the mouse enters the area
   * close to the point. One parameter, event, is passed to the function,
   * containing common event information.
   *
   * @see https://api.highcharts.com/highcharts/series.bar.data.events.mouseOver
   * @see https://api.highcharts.com/highstock/series.bar.data.events.mouseOver
   * @see https://api.highcharts.com/highmaps/series.bar.data.events.mouseOver
   *
   * @implspec mouseOver?: () => void;
   *
   */
  @JSProperty("mouseOver")
  void setMouseOver(MouseOver value);

  /**
   * (Highcharts, Highstock, Highmaps) Fires when the point is removed using
   * the .remove() method. One parameter, event, is passed to the
   * function. Returning false cancels the operation.
   *
   * @see https://api.highcharts.com/highcharts/series.bar.data.events.remove
   * @see https://api.highcharts.com/highstock/series.bar.data.events.remove
   * @see https://api.highcharts.com/highmaps/series.bar.data.events.remove
   *
   * @implspec remove?: () => void;
   *
   */
  @JSProperty("remove")
  @Nullable
  Remove getRemove();

  /**
   * (Highcharts, Highstock, Highmaps) Fires when the point is removed using
   * the .remove() method. One parameter, event, is passed to the
   * function. Returning false cancels the operation.
   *
   * @see https://api.highcharts.com/highcharts/series.bar.data.events.remove
   * @see https://api.highcharts.com/highstock/series.bar.data.events.remove
   * @see https://api.highcharts.com/highmaps/series.bar.data.events.remove
   *
   * @implspec remove?: () => void;
   *
   */
  @JSProperty("remove")
  void setRemove(Remove value);

  /**
   * (Highcharts, Highstock, Highmaps) Fires when the point is selected either
   * programmatically or following a click on the point. One parameter,
   * event, is passed to the function. Returning false cancels the
   * operation.
   *
   * @see https://api.highcharts.com/highcharts/series.bar.data.events.select
   * @see https://api.highcharts.com/highstock/series.bar.data.events.select
   * @see https://api.highcharts.com/highmaps/series.bar.data.events.select
   *
   * @implspec select?: () => void;
   *
   */
  @JSProperty("select")
  @Nullable
  Select getSelect();

  /**
   * (Highcharts, Highstock, Highmaps) Fires when the point is selected either
   * programmatically or following a click on the point. One parameter,
   * event, is passed to the function. Returning false cancels the
   * operation.
   *
   * @see https://api.highcharts.com/highcharts/series.bar.data.events.select
   * @see https://api.highcharts.com/highstock/series.bar.data.events.select
   * @see https://api.highcharts.com/highmaps/series.bar.data.events.select
   *
   * @implspec select?: () => void;
   *
   */
  @JSProperty("select")
  void setSelect(Select value);

  /**
   * (Highcharts, Highstock, Highmaps) Fires when the point is unselected
   * either programmatically or following a click on the point. One parameter,
   * event, is passed to the function. Returning false cancels the
   * operation.
   *
   * @see https://api.highcharts.com/highcharts/series.bar.data.events.unselect
   * @see https://api.highcharts.com/highstock/series.bar.data.events.unselect
   * @see https://api.highcharts.com/highmaps/series.bar.data.events.unselect
   *
   * @implspec unselect?: () => void;
   *
   */
  @JSProperty("unselect")
  @Nullable
  Unselect getUnselect();

  /**
   * (Highcharts, Highstock, Highmaps) Fires when the point is unselected
   * either programmatically or following a click on the point. One parameter,
   * event, is passed to the function. Returning false cancels the
   * operation.
   *
   * @see https://api.highcharts.com/highcharts/series.bar.data.events.unselect
   * @see https://api.highcharts.com/highstock/series.bar.data.events.unselect
   * @see https://api.highcharts.com/highmaps/series.bar.data.events.unselect
   *
   * @implspec unselect?: () => void;
   *
   */
  @JSProperty("unselect")
  void setUnselect(Unselect value);

  /**
   * (Highcharts, Highstock, Highmaps) Fires when the point is updated
   * programmatically through the .update() method. One parameter, event,
   * is passed to the function. The new point options can be accessed through
   * event.options. Returning false cancels the operation.
   *
   * @see https://api.highcharts.com/highcharts/series.bar.data.events.update
   * @see https://api.highcharts.com/highstock/series.bar.data.events.update
   * @see https://api.highcharts.com/highmaps/series.bar.data.events.update
   *
   * @implspec update?: () => void;
   *
   */
  @JSProperty("update")
  @Nullable
  Update getUpdate();

  /**
   * (Highcharts, Highstock, Highmaps) Fires when the point is updated
   * programmatically through the .update() method. One parameter, event,
   * is passed to the function. The new point options can be accessed through
   * event.options. Returning false cancels the operation.
   *
   * @see https://api.highcharts.com/highcharts/series.bar.data.events.update
   * @see https://api.highcharts.com/highstock/series.bar.data.events.update
   * @see https://api.highcharts.com/highmaps/series.bar.data.events.update
   *
   * @implspec update?: () => void;
   *
   */
  @JSProperty("update")
  void setUpdate(Update value);

  /**
   */
  @JSFunctor
  @FunctionalInterface
  interface MouseOut extends Any {
    void apply();
  }

  /**
   */
  @JSFunctor
  @FunctionalInterface
  interface MouseOver extends Any {
    void apply();
  }

  /**
   */
  @JSFunctor
  @FunctionalInterface
  interface Remove extends Any {
    void apply();
  }

  /**
   */
  @JSFunctor
  @FunctionalInterface
  interface Select extends Any {
    void apply();
  }

  /**
   */
  @JSFunctor
  @FunctionalInterface
  interface Unselect extends Any {
    void apply();
  }

  /**
   */
  @JSFunctor
  @FunctionalInterface
  interface Update extends Any {
    void apply();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy