com.github.fluorumlabs.disconnect.highcharts.LegendItemStyleOptions 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) CSS styles for each legend item. Only a
* subset of CSS is supported, notably those options related to text. The
* default textOverflow
property makes long texts truncate. Set it to
* undefined
to wrap text instead. A width
property can be added to control
* the text width.
*
* @see https://api.highcharts.com/highcharts/legend.itemStyle
* @see https://api.highcharts.com/highstock/legend.itemStyle
* @see https://api.highcharts.com/highmaps/legend.itemStyle
*
*/
public interface LegendItemStyleOptions extends Any {
/**
* @implspec cursor?: string;
*
*/
@JSProperty("cursor")
@Nullable
String getCursor();
/**
* @implspec cursor?: string;
*
*/
@JSProperty("cursor")
void setCursor(String value);
}