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

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

/**
 * (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