public static enum ColorAxis.DataClassColor extends Enum<ColorAxis.DataClassColor>
| Enum Constant and Description |
|---|
CATEGORY
Pull colors from the global or chart-specific color array
|
TWEEN
Compute intermediate colors between 'minColor' and 'maxColor'
|
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static ColorAxis.DataClassColor |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ColorAxis.DataClassColor[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ColorAxis.DataClassColor CATEGORY
public static final ColorAxis.DataClassColor TWEEN
public static ColorAxis.DataClassColor[] values()
for (ColorAxis.DataClassColor c : ColorAxis.DataClassColor.values()) System.out.println(c);
public static ColorAxis.DataClassColor 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<ColorAxis.DataClassColor>Copyright © 2015. All Rights Reserved.