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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy