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