public enum AxisLabelFitMode extends Enum<AxisLabelFitMode>
Enum Constant and Description |
---|
MULTI_LINE
Arranges axis labels on multiple lines with each label on a different line than
its neighbor labels.
|
NONE
Does not attempt to fit the axis labels.
|
ROTATE
Arranges the axis labels so that they are rotated some degrees around their top left corner.
|
Modifier and Type | Method and Description |
---|---|
static AxisLabelFitMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AxisLabelFitMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AxisLabelFitMode NONE
public static final AxisLabelFitMode MULTI_LINE
public static final AxisLabelFitMode ROTATE
public static AxisLabelFitMode[] values()
for (AxisLabelFitMode c : AxisLabelFitMode.values()) System.out.println(c);
public static AxisLabelFitMode 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 null