![JAR search and dependency download from the Maven repository](/logo.png)
com.github.fluorumlabs.disconnect.highcharts.RangeSelectorButtonsEventsOptions 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;
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