public enum ChartType extends Enum<ChartType>
Enum Constant and Description |
---|
AREA
Chart type whose series values are drawn using filled areas.
|
BAR
Chart type whose series values are drawn using horizontal rectangles.
|
COLUMN
Chart type whose series values are drawn using vertical rectangles.
|
LINE
Chart type whose series values are drawn using lines.
|
PIE
Chart type whose single series values are drawn as filled arcs in a pie-like form.
|
Modifier and Type | Method and Description |
---|---|
static ChartType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ChartType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChartType AREA
public static final ChartType BAR
public static final ChartType COLUMN
public static final ChartType LINE
public static final ChartType PIE
public static ChartType 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 static ChartType[] values()
for (ChartType c : ChartType.values()) System.out.println(c);
© GemBox Ltd. — All rights reserved.