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

com.github.fluorumlabs.disconnect.highcharts.RangeSelectorButtonsEventsOptions 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;

public interface RangeSelectorButtonsEventsOptions extends Any {
  /**
   * (Highstock) Fires when clicking on the rangeSelector button. One
   * parameter, event, is passed to the function, containing common event
   * information.
   *
   * (see online documentation for example)
   *
   * Return false to stop default button's click action.
   *
   * @see https://api.highcharts.com/highstock/rangeSelector.buttons.events.click
   *
   * @implspec click?: RangeSelectorClickCallbackFunction;
   *
   */
  @JSProperty("click")
  @Nullable
  RangeSelectorClickCallbackFunction getClick();

  /**
   * (Highstock) Fires when clicking on the rangeSelector button. One
   * parameter, event, is passed to the function, containing common event
   * information.
   *
   * (see online documentation for example)
   *
   * Return false to stop default button's click action.
   *
   * @see https://api.highcharts.com/highstock/rangeSelector.buttons.events.click
   *
   * @implspec click?: RangeSelectorClickCallbackFunction;
   *
   */
  @JSProperty("click")
  void setClick(RangeSelectorClickCallbackFunction value);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy