public enum AxisTitlePlacement extends java.lang.Enum<AxisTitlePlacement>
Enum Constant and Description |
---|
Auto
Axit title placed according to default axis settings
|
Bottom
Axis title placed on the bottom edge of the axis
|
Inside
Axis title placed within axis.
|
Left
Axis title placed to the left of the axis
|
Right
Axis title placed to the right of the axis
|
Top
Axis title placed on the top edge of the axis
|
Modifier and Type | Method and Description |
---|---|
static AxisTitlePlacement |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AxisTitlePlacement[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AxisTitlePlacement Inside
public static final AxisTitlePlacement Left
public static final AxisTitlePlacement Right
public static final AxisTitlePlacement Top
public static final AxisTitlePlacement Bottom
public static final AxisTitlePlacement Auto
public static AxisTitlePlacement[] values()
for (AxisTitlePlacement c : AxisTitlePlacement.values()) System.out.println(c);
public static AxisTitlePlacement 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