com.github.fluorumlabs.disconnect.highcharts.Chart3dFrameRightOptions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of disconnect-highcharts Show documentation
Show all versions of disconnect-highcharts Show documentation
Highcharts API bindings for Disconnect Zero
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 right of the frame around a 3D chart.
*
* @see https://api.highcharts.com/highcharts/chart.options3d.frame.right
*
*/
public interface Chart3dFrameRightOptions extends Any {
/**
* (Highcharts) The color of the panel.
*
* @see https://api.highcharts.com/highcharts/chart.options3d.frame.right.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.right.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.right.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.right.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.right.size
*
* @implspec size?: number;
*
*/
@JSProperty("size")
double getSize();
/**
* (Highcharts) The thickness of the panel.
*
* @see https://api.highcharts.com/highcharts/chart.options3d.frame.right.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.right.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.right.visible
*
* @implspec visible?: ("auto"|"default"|boolean);
*
*/
@JSProperty("visible")
void setVisible(boolean value);
}