![JAR search and dependency download from the Maven repository](/logo.png)
com.github.fluorumlabs.disconnect.highcharts.MapNavigationButtonsOptions 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;
/**
* (Highmaps) The individual buttons for the map navigation. This usually
* includes the zoom in and zoom out buttons. Properties for each button is
* inherited from mapNavigation.buttonOptions, while individual options can be
* overridden. But default, the onclick
, text
and y
options are
* individual.
*
* @see https://api.highcharts.com/highmaps/mapNavigation.buttons
*
*/
public interface MapNavigationButtonsOptions extends Any {
/**
* (Highmaps) Options for the zoom in button. Properties for the zoom in and
* zoom out buttons are inherited from mapNavigation.buttonOptions, while
* individual options can be overridden. By default, the onclick
, text
* and y
options are individual.
*
* @see https://api.highcharts.com/highmaps/mapNavigation.buttons.zoomIn
*
* @implspec zoomIn?: MapNavigationButtonsZoomInOptions;
*
*/
@JSProperty("zoomIn")
@Nullable
MapNavigationButtonsZoomInOptions getZoomIn();
/**
* (Highmaps) Options for the zoom in button. Properties for the zoom in and
* zoom out buttons are inherited from mapNavigation.buttonOptions, while
* individual options can be overridden. By default, the onclick
, text
* and y
options are individual.
*
* @see https://api.highcharts.com/highmaps/mapNavigation.buttons.zoomIn
*
* @implspec zoomIn?: MapNavigationButtonsZoomInOptions;
*
*/
@JSProperty("zoomIn")
void setZoomIn(MapNavigationButtonsZoomInOptions value);
/**
* (Highmaps) Options for the zoom out button. Properties for the zoom in
* and zoom out buttons are inherited from mapNavigation.buttonOptions,
* while individual options can be overridden. By default, the onclick
,
* text
and y
options are individual.
*
* @see https://api.highcharts.com/highmaps/mapNavigation.buttons.zoomOut
*
* @implspec zoomOut?: MapNavigationButtonsZoomOutOptions;
*
*/
@JSProperty("zoomOut")
@Nullable
MapNavigationButtonsZoomOutOptions getZoomOut();
/**
* (Highmaps) Options for the zoom out button. Properties for the zoom in
* and zoom out buttons are inherited from mapNavigation.buttonOptions,
* while individual options can be overridden. By default, the onclick
,
* text
and y
options are individual.
*
* @see https://api.highcharts.com/highmaps/mapNavigation.buttons.zoomOut
*
* @implspec zoomOut?: MapNavigationButtonsZoomOutOptions;
*
*/
@JSProperty("zoomOut")
void setZoomOut(MapNavigationButtonsZoomOutOptions value);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy