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

com.github.fluorumlabs.disconnect.highcharts.ChartParallelAxesLabelsLevelsOptions Maven / Gradle / Ivy

There is a newer version: 0.1.0-alpha2
Show newest version
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/chart.parallelAxes.labels.levels
 *
 */
public interface ChartParallelAxesLabelsLevelsOptions extends Any {
  /**
   * (Gantt) Specify the level which the options within this object applies
   * to.
   *
   * @see https://api.highcharts.com/gantt/chart.parallelAxes.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/chart.parallelAxes.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