public static enum XAxis.TickmarkPlacement extends Enum<XAxis.TickmarkPlacement>
XAxis.setTickmarkPlacement(XAxis.TickmarkPlacement) method.| Enum Constant and Description |
|---|
BETWEEN
Display the tick marks between categories.
|
ON
Display the tick marks in the center of the category.
|
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static XAxis.TickmarkPlacement |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static XAxis.TickmarkPlacement[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XAxis.TickmarkPlacement ON
public static final XAxis.TickmarkPlacement BETWEEN
public static XAxis.TickmarkPlacement[] values()
for (XAxis.TickmarkPlacement c : XAxis.TickmarkPlacement.values()) System.out.println(c);
public static XAxis.TickmarkPlacement valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String toString()
toString in class Enum<XAxis.TickmarkPlacement>Copyright © 2015. All Rights Reserved.