com.github.fluorumlabs.disconnect.highcharts.LabelsItemsOptions 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) An HTML label that can be positioned
* anywhere in the chart area.
*
* @see https://api.highcharts.com/highcharts/labels.items
* @see https://api.highcharts.com/highstock/labels.items
* @see https://api.highcharts.com/highmaps/labels.items
*
*/
public interface LabelsItemsOptions extends Any {
/**
* (Highcharts, Highstock, Highmaps) Inner HTML or text for the label.
*
* @see https://api.highcharts.com/highcharts/labels.items.html
* @see https://api.highcharts.com/highstock/labels.items.html
* @see https://api.highcharts.com/highmaps/labels.items.html
*
* @implspec html?: string;
*
*/
@JSProperty("html")
@Nullable
String getHtml();
/**
* (Highcharts, Highstock, Highmaps) Inner HTML or text for the label.
*
* @see https://api.highcharts.com/highcharts/labels.items.html
* @see https://api.highcharts.com/highstock/labels.items.html
* @see https://api.highcharts.com/highmaps/labels.items.html
*
* @implspec html?: string;
*
*/
@JSProperty("html")
void setHtml(String value);
/**
* (Highcharts, Highstock, Highmaps) CSS styles for each label. To position
* the label, use left and top like this:
*
* (see online documentation for example)
*
* @see https://api.highcharts.com/highcharts/labels.items.style
* @see https://api.highcharts.com/highstock/labels.items.style
* @see https://api.highcharts.com/highmaps/labels.items.style
*
* @implspec style?: CSSObject;
*
*/
@JSProperty("style")
@Nullable
CSSObject getStyle();
/**
* (Highcharts, Highstock, Highmaps) CSS styles for each label. To position
* the label, use left and top like this:
*
* (see online documentation for example)
*
* @see https://api.highcharts.com/highcharts/labels.items.style
* @see https://api.highcharts.com/highstock/labels.items.style
* @see https://api.highcharts.com/highmaps/labels.items.style
*
* @implspec style?: CSSObject;
*
*/
@JSProperty("style")
void setStyle(CSSObject value);
}