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

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

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

import java.lang.String;
import javax.annotation.Nullable;
import js.lang.Any;
import org.teavm.jso.JSProperty;

/**
 * (Highcharts, Highstock, Highmaps) A configuration object for the button
 * theme. The object accepts SVG properties like stroke-width, stroke and
 * fill. Tri-state button styles are supported by the states.hover and
 * states.select objects.
 *
 * @see https://api.highcharts.com/highcharts/navigation.buttonOptions.theme
 * @see https://api.highcharts.com/highstock/navigation.buttonOptions.theme
 * @see https://api.highcharts.com/highmaps/navigation.buttonOptions.theme
 *
 */
public interface NavigationButtonThemeOptions extends Any {
  /**
   * (Highcharts, Highstock, Highmaps) The default fill exists only to capture
   * hover events.
   *
   * @see https://api.highcharts.com/highcharts/navigation.buttonOptions.theme.fill
   * @see https://api.highcharts.com/highstock/navigation.buttonOptions.theme.fill
   * @see https://api.highcharts.com/highmaps/navigation.buttonOptions.theme.fill
   *
   * @implspec fill?: ColorString;
   *
   */
  @JSProperty("fill")
  @Nullable
  String getFill();

  /**
   * (Highcharts, Highstock, Highmaps) The default fill exists only to capture
   * hover events.
   *
   * @see https://api.highcharts.com/highcharts/navigation.buttonOptions.theme.fill
   * @see https://api.highcharts.com/highstock/navigation.buttonOptions.theme.fill
   * @see https://api.highcharts.com/highmaps/navigation.buttonOptions.theme.fill
   *
   * @implspec fill?: ColorString;
   *
   */
  @JSProperty("fill")
  void setFill(String value);

  /**
   * @implspec padding?: number;
   *
   */
  @JSProperty("padding")
  double getPadding();

  /**
   * @implspec padding?: number;
   *
   */
  @JSProperty("padding")
  void setPadding(double value);

  /**
   * @implspec stroke?: string;
   *
   */
  @JSProperty("stroke")
  @Nullable
  String getStroke();

  /**
   * @implspec stroke?: string;
   *
   */
  @JSProperty("stroke")
  void setStroke(String value);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy