Enum Constant and Description |
---|
Overlay
Render elements at same index from all series as overlaid bars.
|
SideBySide
Render elements at same index from all series as a group of side-by-side bars.
|
Stack
Render elements at same index from all series as stacked bars.
|
Modifier and Type | Method and Description |
---|---|
static BarLayout |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BarLayout[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BarLayout SideBySide
public static final BarLayout Stack
public static final BarLayout Overlay
public static BarLayout[] values()
for (BarLayout c : BarLayout.values()) System.out.println(c);
public static BarLayout 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