Enum ChartType
- All Implemented Interfaces:
ValueEnum
,Serializable
,Comparable<ChartType>
,Constable
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.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionValues represented by area, with stacked values representing multiple facet values.Values represented by horizontal bars.A 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.Values represented by vertical columns.Like a pie chart with a central hole.Like 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 associatedFacetChart.endValueMetric
values to show a series of line segments.Values represented by a lines between data points, or stacked areas for multiple facets.Circular chart with wedges representing values.Values represented on a circular background by a line around the center, or stacked areas for multiple facetsA chart with two continuous numeric axes and up to one discrete facet. -
Method Summary
-
Enum Constant Details
-
AREA
Values represented by area, with stacked values representing multiple facet values. This is equivalent to ChartType "Line" with stacking enabled.If this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "Area". -
COLUMN
Values represented by vertical columns. Typically supports stacking to represent two facets. May support simultaneous stacking and clustering for 3 facets.If this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "Column". -
BAR
Values represented by horizontal bars. Typically supports stacking to represent two facets. May support simultaneous stacking and clustering for 3 facets.If this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "Bar". -
LINE
Values represented by a lines between data points, or stacked areas for multiple facets.If this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "Line". -
RADAR
Values represented on a circular background by a line around the center, or stacked areas for multiple facetsIf this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "Radar". -
PIE
Circular chart with wedges representing values. Multiple or stacked pies for multiple facets.If this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "Pie". -
DOUGHNUT
Like a pie chart with a central hole. Multiple or stacked doughnuts for multiple facets.If this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "Doughnut". -
SCATTER
A chart with two continuous numeric axes and up to one discrete facet.If this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "Scatter". -
BUBBLE
A 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.If this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "Bubble". -
HISTOGRAM
Like 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 associatedFacetChart.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".
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getValue
-