public enum AxisAlignment extends java.lang.Enum<AxisAlignment>
Enum Constant and Description |
---|
Auto
Axis is placed based on default settings of chart
|
Bottom
Axis is on the Bottom-edge of the chart
|
Left
Axis is on the Left-side of the chart
|
Right
Axis is on the Right-side of the chart
|
Top
Axis is on the Top-edge of the chart
|
Modifier and Type | Method and Description |
---|---|
static AxisAlignment |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AxisAlignment[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AxisAlignment Right
public static final AxisAlignment Left
public static final AxisAlignment Top
public static final AxisAlignment Bottom
public static final AxisAlignment Auto
public static AxisAlignment[] values()
for (AxisAlignment c : AxisAlignment.values()) System.out.println(c);
public static AxisAlignment valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null