public enum ChartTitleDirection extends Enum<ChartTitleDirection>
Enum Constant and Description |
---|
HORIZONTAL
Text is horizontal.
|
ROTATE_270
Text is vertical (each line is 270 degrees rotated clockwise, so it goes from bottom to top; each next line is to the right from the previous one).
|
ROTATE_90
Text is vertical (each line is 90 degrees rotated clockwise, so it goes from top to bottom; each next line is to the left from the previous one).
|
STACKED
Text is vertical (one letter on top of another).
|
Modifier and Type | Method and Description |
---|---|
static ChartTitleDirection |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ChartTitleDirection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChartTitleDirection HORIZONTAL
public static final ChartTitleDirection ROTATE_270
public static final ChartTitleDirection ROTATE_90
public static final ChartTitleDirection STACKED
public static ChartTitleDirection 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 static ChartTitleDirection[] values()
for (ChartTitleDirection c : ChartTitleDirection.values()) System.out.println(c);
© GemBox Ltd. — All rights reserved.