public enum ChartLegendPosition extends Enum<ChartLegendPosition>
Enum Constant and Description |
---|
BOTTOM
Specifies that the legend shall be drawn at the bottom of the chart.
|
LEFT
Specifies that the legend shall be drawn at the left of the chart.
|
RIGHT
Specifies that the legend shall be drawn at the right of the chart.
|
TOP
Specifies that the legend shall be drawn at the top of the chart.
|
TOP_RIGHT
Specifies that the legend shall be drawn at the top right of the chart.
|
Modifier and Type | Method and Description |
---|---|
static ChartLegendPosition |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ChartLegendPosition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChartLegendPosition BOTTOM
public static final ChartLegendPosition LEFT
public static final ChartLegendPosition RIGHT
public static final ChartLegendPosition TOP
public static final ChartLegendPosition TOP_RIGHT
public static ChartLegendPosition 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 ChartLegendPosition[] values()
for (ChartLegendPosition c : ChartLegendPosition.values()) System.out.println(c);
© GemBox d.o.o. — All rights reserved.