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

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

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

import js.lang.Any;
import org.teavm.jso.JSProperty;

/**
 * (Highcharts, Highstock, Highmaps) A collection of attributes for the button.
 * The object takes SVG attributes like fill, stroke, stroke-width or r,
 * the border radius. The theme also supports style, a collection of CSS
 * properties for the text. Equivalent attributes for the hover state are given
 * in theme.states.hover.
 *
 * @see https://api.highcharts.com/highcharts/chart.resetZoomButton.theme
 * @see https://api.highcharts.com/highstock/chart.resetZoomButton.theme
 * @see https://api.highcharts.com/highmaps/chart.resetZoomButton.theme
 *
 */
public interface ChartResetZoomButtonThemeOptions extends Any {
  /**
   * (Highcharts, Highstock, Highmaps) The Z index for the reset zoom button.
   * The default value places it below the tooltip that has Z index 7.
   *
   * @see https://api.highcharts.com/highcharts/chart.resetZoomButton.theme.zIndex
   * @see https://api.highcharts.com/highstock/chart.resetZoomButton.theme.zIndex
   * @see https://api.highcharts.com/highmaps/chart.resetZoomButton.theme.zIndex
   *
   * @implspec zIndex?: number;
   *
   */
  @JSProperty("zIndex")
  double getZIndex();

  /**
   * (Highcharts, Highstock, Highmaps) The Z index for the reset zoom button.
   * The default value places it below the tooltip that has Z index 7.
   *
   * @see https://api.highcharts.com/highcharts/chart.resetZoomButton.theme.zIndex
   * @see https://api.highcharts.com/highstock/chart.resetZoomButton.theme.zIndex
   * @see https://api.highcharts.com/highmaps/chart.resetZoomButton.theme.zIndex
   *
   * @implspec zIndex?: number;
   *
   */
  @JSProperty("zIndex")
  void setZIndex(double value);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy