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

com.github.fluorumlabs.disconnect.highcharts.PlotIkhSenkouSpanAStylesOptions 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 org.teavm.jso.JSProperty;

public interface PlotIkhSenkouSpanAStylesOptions extends Any {
  /**
   * (Highstock) Color of the line.
   *
   * @see https://api.highcharts.com/highstock/plotOptions.ikh.senkouSpanA.styles.lineColor
   *
   * @implspec lineColor?: ColorString;
   *
   */
  @JSProperty("lineColor")
  @Nullable
  String getLineColor();

  /**
   * (Highstock) Color of the line.
   *
   * @see https://api.highcharts.com/highstock/plotOptions.ikh.senkouSpanA.styles.lineColor
   *
   * @implspec lineColor?: ColorString;
   *
   */
  @JSProperty("lineColor")
  void setLineColor(String value);

  /**
   * (Highstock) Pixel width of the line.
   *
   * @see https://api.highcharts.com/highstock/plotOptions.ikh.senkouSpanA.styles.lineWidth
   *
   * @implspec lineWidth?: number;
   *
   */
  @JSProperty("lineWidth")
  double getLineWidth();

  /**
   * (Highstock) Pixel width of the line.
   *
   * @see https://api.highcharts.com/highstock/plotOptions.ikh.senkouSpanA.styles.lineWidth
   *
   * @implspec lineWidth?: number;
   *
   */
  @JSProperty("lineWidth")
  void setLineWidth(double value);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy