public enum ChartSeriesCombineMode extends Enum<ChartSeriesCombineMode>
Enum Constant and Description |
---|
CLUSTER
Series are combined next to each other.
|
NONE
No combining. Each series is plotted independently.
|
STACK
Series form stacks.
|
STACK_100
Series for stacks that occupy 100% of the plot area.
|
Modifier and Type | Method and Description |
---|---|
static ChartSeriesCombineMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ChartSeriesCombineMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChartSeriesCombineMode NONE
public static final ChartSeriesCombineMode CLUSTER
public static final ChartSeriesCombineMode STACK
public static final ChartSeriesCombineMode STACK_100
public static ChartSeriesCombineMode[] values()
for (ChartSeriesCombineMode c : ChartSeriesCombineMode.values()) System.out.println(c);
public static ChartSeriesCombineMode 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 null