![JAR search and dependency download from the Maven repository](/logo.png)
com.github.fluorumlabs.disconnect.highcharts.NavigatorYAxisLabelsLevelsOptions 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 javax.annotation.Nullable;
import js.lang.Any;
import org.teavm.jso.JSProperty;
/**
* (Gantt) Set options on specific levels in a tree grid axis. Takes precedence
* over labels options.
*
* @see https://api.highcharts.com/gantt/navigator.yAxis.labels.levels
*
*/
public interface NavigatorYAxisLabelsLevelsOptions extends Any {
/**
* (Gantt) Specify the level which the options within this object applies
* to.
*
* @see https://api.highcharts.com/gantt/navigator.yAxis.labels.levels.level
*
* @implspec level?: number;
*
*/
@JSProperty("level")
double getLevel();
/**
* (Gantt) Specify the level which the options within this object applies
* to.
*
* @see https://api.highcharts.com/gantt/navigator.yAxis.labels.levels.level
*
* @implspec level?: number;
*
*/
@JSProperty("level")
void setLevel(double value);
/**
* @implspec style?: CSSObject;
*
*/
@JSProperty("style")
@Nullable
CSSObject getStyle();
/**
* @implspec style?: CSSObject;
*
*/
@JSProperty("style")
void setStyle(CSSObject value);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy