public enum AxisTitleOrientation extends java.lang.Enum<AxisTitleOrientation>
Enum Constant and Description |
---|
Auto
Axis title placed according to default axis settings
|
Horizontal
Axis title placed horizontally
|
Vertical
Axis title placed vertically and title is drawn from top to bottom
|
VerticalFlipped
Axis title placed vertically and title is drawn from bottom to top
|
Modifier and Type | Method and Description |
---|---|
static AxisTitleOrientation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AxisTitleOrientation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AxisTitleOrientation Horizontal
public static final AxisTitleOrientation Vertical
public static final AxisTitleOrientation VerticalFlipped
public static final AxisTitleOrientation Auto
public static AxisTitleOrientation[] values()
for (AxisTitleOrientation c : AxisTitleOrientation.values()) System.out.println(c);
public static AxisTitleOrientation 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