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

com.github.fluorumlabs.disconnect.highcharts.PlotVbpZoneLinesOptions 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;

/**
 * (Highstock) The styles for lines which determine price zones.
 *
 * @see https://api.highcharts.com/highstock/plotOptions.vbp.zoneLines
 *
 */
public interface PlotVbpZoneLinesOptions extends Any {
  /**
   * (Highstock) Enable/disable zone lines.
   *
   * @see https://api.highcharts.com/highstock/plotOptions.vbp.zoneLines.enabled
   *
   * @implspec enabled?: boolean;
   *
   */
  @JSProperty("enabled")
  boolean getEnabled();

  /**
   * (Highstock) Enable/disable zone lines.
   *
   * @see https://api.highcharts.com/highstock/plotOptions.vbp.zoneLines.enabled
   *
   * @implspec enabled?: boolean;
   *
   */
  @JSProperty("enabled")
  void setEnabled(boolean value);

  /**
   * @implspec styles?: PlotVbpZoneLinesStylesOptions;
   *
   */
  @JSProperty("styles")
  @Nullable
  PlotVbpZoneLinesStylesOptions getStyles();

  /**
   * @implspec styles?: PlotVbpZoneLinesStylesOptions;
   *
   */
  @JSProperty("styles")
  void setStyles(PlotVbpZoneLinesStylesOptions value);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy