public static enum Axis.Type extends Enum<Axis.Type>
Axis.setType(Axis.Type).| Enum Constant and Description |
|---|
CATEGORY
Display the point names as categories for the axis
|
DATE_TIME
In a datetime axis, the numbers are given in milliseconds, and tick
marks are placed on appropriate values like full hours or days.
|
LINEAR
Default axis type showing the values in a linear structure.
|
LOGARITHMIC
Scale the axis tick values logarithmically instead of linearly.
|
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static Axis.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Axis.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Axis.Type CATEGORY
public static final Axis.Type LINEAR
public static final Axis.Type LOGARITHMIC
public static final Axis.Type DATE_TIME
public static Axis.Type[] values()
for (Axis.Type c : Axis.Type.values()) System.out.println(c);
public static Axis.Type 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 nullCopyright © 2015. All Rights Reserved.