com.github.fluorumlabs.disconnect.highcharts.TooltipStyleOptions 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 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);
}