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

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

/**
 * (Highcharts) The left side of the frame around a 3D chart.
 *
 * @see https://api.highcharts.com/highcharts/chart.options3d.frame.left
 *
 */
public interface Chart3dFrameLeftOptions extends Any {
  /**
   * (Highcharts) The color of the panel.
   *
   * @see https://api.highcharts.com/highcharts/chart.options3d.frame.left.color
   *
   * @implspec color?: (ColorString|GradientColorObject|object);
   *
   */
  @JSProperty("color")
  @Nullable
  Unknown getColor();

  /**
   * (Highcharts) The color of the panel.
   *
   * @see https://api.highcharts.com/highcharts/chart.options3d.frame.left.color
   *
   * @implspec color?: (ColorString|GradientColorObject|object);
   *
   */
  @JSProperty("color")
  void setColor(GradientColorObject value);

  /**
   * (Highcharts) The color of the panel.
   *
   * @see https://api.highcharts.com/highcharts/chart.options3d.frame.left.color
   *
   * @implspec color?: (ColorString|GradientColorObject|object);
   *
   */
  @JSProperty("color")
  void setColor(String value);

  /**
   * (Highcharts) The color of the panel.
   *
   * @see https://api.highcharts.com/highcharts/chart.options3d.frame.left.color
   *
   * @implspec color?: (ColorString|GradientColorObject|object);
   *
   */
  @JSProperty("color")
  void setColor(Any value);

  /**
   * (Highcharts) The thickness of the panel.
   *
   * @see https://api.highcharts.com/highcharts/chart.options3d.frame.left.size
   *
   * @implspec size?: number;
   *
   */
  @JSProperty("size")
  double getSize();

  /**
   * (Highcharts) The thickness of the panel.
   *
   * @see https://api.highcharts.com/highcharts/chart.options3d.frame.left.size
   *
   * @implspec size?: number;
   *
   */
  @JSProperty("size")
  void setSize(double value);

  /**
   * (Highcharts) Whether to display the frame. Possible values are true,
   * false, "auto" to display only the frames behind the data, and
   * "default" to display faces behind the data based on the axis layout,
   * ignoring the point of view.
   *
   * @see https://api.highcharts.com/highcharts/chart.options3d.frame.left.visible
   *
   * @implspec visible?: ("auto"|"default"|boolean);
   *
   */
  @JSProperty("visible")
  boolean getVisible();

  /**
   * (Highcharts) Whether to display the frame. Possible values are true,
   * false, "auto" to display only the frames behind the data, and
   * "default" to display faces behind the data based on the axis layout,
   * ignoring the point of view.
   *
   * @see https://api.highcharts.com/highcharts/chart.options3d.frame.left.visible
   *
   * @implspec visible?: ("auto"|"default"|boolean);
   *
   */
  @JSProperty("visible")
  void setVisible(boolean value);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy