public enum TickLabelPosition extends java.lang.Enum<TickLabelPosition>
| Enum Constant and Description |
|---|
High
Specifies that the tick marks are at the top or right side of the chart.
|
Low
Specifies that the tick marks are on the bottom or left side of the chart.
|
NextToAxis
Specifies that the tick marks are next to the axis (where the axis is not at either side of the chart).
|
None
Specifies no tick marks.
|
| Modifier and Type | Method and Description |
|---|---|
static TickLabelPosition |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TickLabelPosition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TickLabelPosition None
public static final TickLabelPosition Low
public static final TickLabelPosition High
public static final TickLabelPosition NextToAxis
public static TickLabelPosition[] values()
for (TickLabelPosition c : TickLabelPosition.values()) System.out.println(c);
public static TickLabelPosition 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