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

com.github.fluorumlabs.disconnect.highcharts.Chart3dFrameSideOptions 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) Note: As of v5.0.12, frame.left or frame.right should be
 * used instead.
 *
 * The side for the frame around a 3D chart.
 *
 * @see https://api.highcharts.com/highcharts/chart.options3d.frame.side
 *
 */
public interface Chart3dFrameSideOptions extends Any {
  /**
   * (Highcharts) The color of the panel.
   *
   * @see https://api.highcharts.com/highcharts/chart.options3d.frame.side.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.side.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.side.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.side.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.side.size
   *
   * @implspec size?: number;
   *
   */
  @JSProperty("size")
  double getSize();

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy