public enum DataLabelPosition extends java.lang.Enum<DataLabelPosition>
| Enum Constant and Description |
|---|
Above
Specifies that the data label is above the point.
|
Below
Specifies that the data label is below the point.
|
BestFit
Specifies the best position for the data label.
|
Center
Specifies that the data label is centered on a data point or inside the bar or pie.
|
InsideBase
Specifies that the data label is positioned arbitrarily.
|
InsideEnd
Specifies that the data label is positioned arbitrarily.
|
Left
Specifies that the data label is positioned at the bottom of the bar or pie
|
OutsideEnd
Specifies that the data label is positioned at the top of the bar or pie.
|
Right
Specifies that the data label is positioned at the top of the bar or pie.
|
| Modifier and Type | Method and Description |
|---|---|
static DataLabelPosition |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DataLabelPosition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataLabelPosition Right
public static final DataLabelPosition Left
public static final DataLabelPosition Center
public static final DataLabelPosition Above
public static final DataLabelPosition Below
public static final DataLabelPosition OutsideEnd
public static final DataLabelPosition InsideEnd
public static final DataLabelPosition InsideBase
public static final DataLabelPosition BestFit
public static DataLabelPosition[] values()
for (DataLabelPosition c : DataLabelPosition.values()) System.out.println(c);
public static DataLabelPosition valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null