com.github.fluorumlabs.disconnect.highcharts.NavigatorXAxisLabelsStyleOptions 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;
/**
* (Highstock) CSS styles for the label. Use whiteSpace: 'nowrap'
to prevent
* wrapping of category labels. Use textOverflow: 'none'
to prevent ellipsis
* (dots).
*
* In styled mode, the labels are styled with the .highcharts-axis-labels
* class.
*
* @see https://api.highcharts.com/highstock/navigator.xAxis.labels.style
*
*/
public interface NavigatorXAxisLabelsStyleOptions extends Any {
/**
* @implspec color?: string;
*
*/
@JSProperty("color")
@Nullable
String getColor();
/**
* @implspec color?: string;
*
*/
@JSProperty("color")
void setColor(String value);
}