public static enum ChartData.LegendPosition extends Enum<ChartData.LegendPosition>
| Enum Constant and Description |
|---|
BOTTOM |
LEFT |
NONE |
RIGHT |
TOP |
TOP_RIGHT |
| Modifier and Type | Method and Description |
|---|---|
static ChartData.LegendPosition |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ChartData.LegendPosition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChartData.LegendPosition NONE
public static final ChartData.LegendPosition BOTTOM
public static final ChartData.LegendPosition TOP_RIGHT
public static final ChartData.LegendPosition LEFT
public static final ChartData.LegendPosition RIGHT
public static final ChartData.LegendPosition TOP
public static ChartData.LegendPosition[] values()
for (ChartData.LegendPosition c : ChartData.LegendPosition.values()) System.out.println(c);
public static ChartData.LegendPosition 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 nullCopyright © 2016–2025 Vaadin Ltd. All rights reserved.