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

com.github.fluorumlabs.disconnect.highcharts.LegendTitleOptions 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) A title to be added on top of the legend.
 *
 * @see https://api.highcharts.com/highcharts/legend.title
 * @see https://api.highcharts.com/highstock/legend.title
 * @see https://api.highcharts.com/highmaps/legend.title
 *
 */
public interface LegendTitleOptions extends Any {
  /**
   * (Highcharts, Highstock, Highmaps) Generic CSS styles for the legend
   * title.
   *
   * @see https://api.highcharts.com/highcharts/legend.title.style
   * @see https://api.highcharts.com/highstock/legend.title.style
   * @see https://api.highcharts.com/highmaps/legend.title.style
   *
   * @implspec style?: CSSObject;
   *
   */
  @JSProperty("style")
  @Nullable
  CSSObject getStyle();

  /**
   * (Highcharts, Highstock, Highmaps) Generic CSS styles for the legend
   * title.
   *
   * @see https://api.highcharts.com/highcharts/legend.title.style
   * @see https://api.highcharts.com/highstock/legend.title.style
   * @see https://api.highcharts.com/highmaps/legend.title.style
   *
   * @implspec style?: CSSObject;
   *
   */
  @JSProperty("style")
  void setStyle(CSSObject value);

  /**
   * (Highcharts, Highstock, Highmaps) A text or HTML string for the title.
   *
   * @see https://api.highcharts.com/highcharts/legend.title.text
   * @see https://api.highcharts.com/highstock/legend.title.text
   * @see https://api.highcharts.com/highmaps/legend.title.text
   *
   * @implspec text?: string;
   *
   */
  @JSProperty("text")
  @Nullable
  String getText();

  /**
   * (Highcharts, Highstock, Highmaps) A text or HTML string for the title.
   *
   * @see https://api.highcharts.com/highcharts/legend.title.text
   * @see https://api.highcharts.com/highstock/legend.title.text
   * @see https://api.highcharts.com/highmaps/legend.title.text
   *
   * @implspec text?: string;
   *
   */
  @JSProperty("text")
  void setText(String value);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy