com.github.fluorumlabs.disconnect.highcharts.Chart3dFrameSideOptions 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) 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);
}