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

com.github.fluorumlabs.disconnect.highcharts.TooltipStyleOptions 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) CSS styles for the tooltip. The tooltip can
 * also be styled through the CSS class .highcharts-tooltip.
 *
 * @see https://api.highcharts.com/highcharts/tooltip.style
 * @see https://api.highcharts.com/highstock/tooltip.style
 * @see https://api.highcharts.com/highmaps/tooltip.style
 *
 */
public interface TooltipStyleOptions extends Any {
  /**
   * @implspec whiteSpace?: string;
   *
   */
  @JSProperty("whiteSpace")
  @Nullable
  String getWhiteSpace();

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy