![JAR search and dependency download from the Maven repository](/logo.png)
com.github.fluorumlabs.disconnect.highcharts.LegendTitleOptions 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) 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