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

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

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

import javax.annotation.Nullable;
import js.lang.Any;
import js.util.collections.Array;
import org.teavm.jso.JSProperty;

/**
 * (Highcharts, Highstock, Highmaps) HTML labels that can be positioned anywhere
 * in the chart area.
 *
 * @see https://api.highcharts.com/highcharts/labels
 * @see https://api.highcharts.com/highstock/labels
 * @see https://api.highcharts.com/highmaps/labels
 *
 */
public interface LabelsOptions extends Any {
  /**
   * (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
   *
   * @implspec items?: Array;
   *
   */
  @JSProperty("items")
  @Nullable
  Array getItems();

  /**
   * (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
   *
   * @implspec items?: Array;
   *
   */
  @JSProperty("items")
  void setItems(Array value);

  /**
   * (Highcharts, Highstock, Highmaps) Shared CSS styles for all labels.
   *
   * @see https://api.highcharts.com/highcharts/labels.style
   * @see https://api.highcharts.com/highstock/labels.style
   * @see https://api.highcharts.com/highmaps/labels.style
   *
   * @implspec style?: CSSObject;
   *
   */
  @JSProperty("style")
  @Nullable
  CSSObject getStyle();

  /**
   * (Highcharts, Highstock, Highmaps) Shared CSS styles for all labels.
   *
   * @see https://api.highcharts.com/highcharts/labels.style
   * @see https://api.highcharts.com/highstock/labels.style
   * @see https://api.highcharts.com/highmaps/labels.style
   *
   * @implspec style?: CSSObject;
   *
   */
  @JSProperty("style")
  void setStyle(CSSObject value);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy