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

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

There is a newer version: 0.1.0-alpha2
Show newest version
package com.github.fluorumlabs.disconnect.highcharts;

import java.lang.String;
import javax.annotation.Nullable;
import js.lang.Any;
import js.lang.Unknown;
import org.teavm.jso.JSProperty;

public interface PlotVbpZoneLinesStylesOptions extends Any {
  /**
   * (Highstock) Color of zone lines.
   *
   * @see https://api.highcharts.com/highstock/plotOptions.vbp.zoneLines.styles.color
   *
   * @implspec color?: (ColorString|GradientColorObject|object);
   *
   */
  @JSProperty("color")
  @Nullable
  Unknown getColor();

  /**
   * (Highstock) Color of zone lines.
   *
   * @see https://api.highcharts.com/highstock/plotOptions.vbp.zoneLines.styles.color
   *
   * @implspec color?: (ColorString|GradientColorObject|object);
   *
   */
  @JSProperty("color")
  void setColor(GradientColorObject value);

  /**
   * (Highstock) Color of zone lines.
   *
   * @see https://api.highcharts.com/highstock/plotOptions.vbp.zoneLines.styles.color
   *
   * @implspec color?: (ColorString|GradientColorObject|object);
   *
   */
  @JSProperty("color")
  void setColor(String value);

  /**
   * (Highstock) Color of zone lines.
   *
   * @see https://api.highcharts.com/highstock/plotOptions.vbp.zoneLines.styles.color
   *
   * @implspec color?: (ColorString|GradientColorObject|object);
   *
   */
  @JSProperty("color")
  void setColor(Any value);

  /**
   * (Highstock) The dash style of zone lines.
   *
   * @see https://api.highcharts.com/highstock/plotOptions.vbp.zoneLines.styles.dashStyle
   *
   * @implspec dashStyle?: string;
   *
   */
  @JSProperty("dashStyle")
  @Nullable
  String getDashStyle();

  /**
   * (Highstock) The dash style of zone lines.
   *
   * @see https://api.highcharts.com/highstock/plotOptions.vbp.zoneLines.styles.dashStyle
   *
   * @implspec dashStyle?: string;
   *
   */
  @JSProperty("dashStyle")
  void setDashStyle(String value);

  /**
   * (Highstock) Pixel width of zone lines.
   *
   * @see https://api.highcharts.com/highstock/plotOptions.vbp.zoneLines.styles.lineWidth
   *
   * @implspec lineWidth?: number;
   *
   */
  @JSProperty("lineWidth")
  double getLineWidth();

  /**
   * (Highstock) Pixel width of zone lines.
   *
   * @see https://api.highcharts.com/highstock/plotOptions.vbp.zoneLines.styles.lineWidth
   *
   * @implspec lineWidth?: number;
   *
   */
  @JSProperty("lineWidth")
  void setLineWidth(double value);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy