public enum ChartAnnotationLabelLocation extends Enum<ChartAnnotationLabelLocation>
ChartAnnotation
locations on the Chart relatively
to the annotation owner.Enum Constant and Description |
---|
BOTTOM
The position of the annotation is at the bottom of the owner.
|
INSIDE
The position of the annotation is inside the owner.
|
LEFT
The position of the annotation is at the left side of the owner.
|
RIGHT
The position of the annotation is at the right of the owner.
|
TOP
The position of the annotation is at the top of the owner.
|
Modifier and Type | Method and Description |
---|---|
static ChartAnnotationLabelLocation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ChartAnnotationLabelLocation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChartAnnotationLabelLocation LEFT
public static final ChartAnnotationLabelLocation TOP
public static final ChartAnnotationLabelLocation RIGHT
public static final ChartAnnotationLabelLocation BOTTOM
public static final ChartAnnotationLabelLocation INSIDE
public static ChartAnnotationLabelLocation[] values()
for (ChartAnnotationLabelLocation c : ChartAnnotationLabelLocation.values()) System.out.println(c);
public static ChartAnnotationLabelLocation 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