public enum DataLabelPosition extends Enum<DataLabelPosition>
Enum Constant and Description |
---|
BEST_FIT
Specifies that data labels shall be displayed in the best position.
|
BOTTOM
Specifies that data labels shall be displayed below the data marker.
|
CENTER
Specifies that data labels shall be displayed centered on the data marker.
|
INSIDE_BASE
Specifies that data labels shall be displayed inside the base of the data marker.
|
INSIDE_END
Specifies that data labels shall be displayed inside the end of the data marker.
|
LEFT
Specifies that data labels shall be displayed to the left of the data marker.
|
NONE
Data label is not shown.
|
OUTSIDE_END
Specifies that data labels shall be displayed outside the end of the data marker.
|
RIGHT
Specifies that data labels shall be displayed to the right of the data marker.
|
TOP
Specifies that data labels shall be displayed above the data marker.
|
Modifier and Type | Method and Description |
---|---|
static DataLabelPosition |
valueOf(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 BEST_FIT
public static final DataLabelPosition BOTTOM
public static final DataLabelPosition CENTER
public static final DataLabelPosition INSIDE_BASE
public static final DataLabelPosition INSIDE_END
public static final DataLabelPosition LEFT
public static final DataLabelPosition NONE
public static final DataLabelPosition OUTSIDE_END
public static final DataLabelPosition RIGHT
public static final DataLabelPosition TOP
public static DataLabelPosition 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 DataLabelPosition[] values()
for (DataLabelPosition c : DataLabelPosition.values()) System.out.println(c);
© GemBox Ltd. — All rights reserved.