public enum LegendPosition extends java.lang.Enum<LegendPosition>
| Enum Constant and Description |
|---|
Bottom
Specifies a position below the chart.
|
Corner
Specifies a position in the upper right-hand corner of the chart border.
|
Custom
Specifies a custom position.
|
Left
Specifies a position to the left of the chart.
|
Right
Specifies a position to the right of the chart.
|
Top
Specifies a position above the chart.
|
| Modifier and Type | Method and Description |
|---|---|
static LegendPosition |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LegendPosition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LegendPosition Custom
public static final LegendPosition Top
public static final LegendPosition Right
public static final LegendPosition Left
public static final LegendPosition Bottom
public static final LegendPosition Corner
public static LegendPosition[] values()
for (LegendPosition c : LegendPosition.values()) System.out.println(c);
public static LegendPosition 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