public enum ChartType extends java.lang.Enum<ChartType> implements ValueEnum
 Concrete charting implementations may use any value for
 chartType but should support the provided chartType values for charts that correspond to the
 visual presentation described below, to enable easy switching between charting engines.
| Enum Constant and Description | 
|---|
| AREAValues represented by area, with stacked values representing multiple facet values. | 
| BARValues represented by horizontal bars. | 
| BUBBLEA chart with two continuous numeric axes and up to one discrete facet that also displays values from a third continuous,
 numeric domain represented as the sizes of the data point shapes. | 
| COLUMNValues represented by vertical columns. | 
| DOUGHNUTLike a pie chart with a central hole. | 
| HISTOGRAMLike a column chart, except instead of showing stacked or clustered values for each position on the horizontal axis, the
 data values are used together with the associated  FacetChart.endValueMetricvalues to show a series of line segments. | 
| LINEValues represented by a lines between data points, or stacked areas for multiple facets. | 
| PIECircular chart with wedges representing values. | 
| RADARValues represented on a circular background by a line around the center, or stacked areas for multiple facets | 
| SCATTERA chart with two continuous numeric axes and up to one discrete facet. | 
| Modifier and Type | Method and Description | 
|---|---|
| java.lang.String | getValue() | 
| static ChartType | valueOf(java.lang.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
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "Area".
public static final ChartType COLUMN
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "Column".
public static final ChartType BAR
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "Bar".
public static final ChartType LINE
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "Line".
public static final ChartType RADAR
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "Radar".
public static final ChartType PIE
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "Pie".
public static final ChartType DOUGHNUT
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "Doughnut".
public static final ChartType SCATTER
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "Scatter".
public static final ChartType BUBBLE
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "Bubble".
public static final ChartType HISTOGRAM
FacetChart.endValueMetric values to show a series of line segments.
 
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "Histogram".
public static ChartType[] values()
for (ChartType c : ChartType.values()) System.out.println(c);
public static ChartType 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