public static enum PlotOptions.Stacking extends Enum<PlotOptions.Stacking>
PlotOptions.setStacking(PlotOptions.Stacking) method.| Enum Constant and Description |
|---|
NORMAL
Stack the series by linear value
|
PERCENT
Stack the series by percent value
|
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static PlotOptions.Stacking |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PlotOptions.Stacking[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PlotOptions.Stacking NORMAL
public static final PlotOptions.Stacking PERCENT
public static PlotOptions.Stacking[] values()
for (PlotOptions.Stacking c : PlotOptions.Stacking.values()) System.out.println(c);
public static PlotOptions.Stacking 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 String toString()
toString in class Enum<PlotOptions.Stacking>Copyright © 2015. All Rights Reserved.