Enum Class ChartType
- All Implemented Interfaces:
Serializable,Comparable<ChartType>,Constable
Represents a chart type.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe values are interpreted as y-coordinates within a Cartesian coordinate system with horizontal x-axis and vertical y-axis.The values are interpreted as y-coordinates within a Cartesian coordinate system with horizontal x-axis and vertical y-axis.The values are displayed as pie chart.The values are interpreted together to form the start and end values (in this order) in a gantt chart.The values are interpreted as y-coordinates within a Cartesian coordinate system with horizontal x-axis and vertical y-axis.The values are interpreted as radius-coordinates within a counter clockwise polar coordinate system.The values are displayed as one ring in a donut chart.The values are interpreted as y-coordinates within a Cartesian coordinate system with horizontal x-axis and vertical y-axis.The values are interpreted together to form the opening, minimum, maximum and closing (in this order) values of a stock symbol displayed at the y scale in a Cartesian coordinate system with horizontal x-axis and vertical y-axis.The values are interpreted as altitudes at specific grid locations. -
Method Summary
-
Enum Constant Details
-
LINE
The values are interpreted as y-coordinates within a Cartesian coordinate system with horizontal x-axis and vertical y-axis. -
AREA
The values are interpreted as y-coordinates within a Cartesian coordinate system with horizontal x-axis and vertical y-axis. The accessory x-coordinates are generated from the positions in the y-value sequence starting with 1.0. The first y value gets an x value 1.0. The second y value is associated with an x value of 2.0 and so forth. -
CIRCLE
The values are displayed as pie chart. -
RING
The values are displayed as one ring in a donut chart. -
SCATTER
The values are interpreted as y-coordinates within a Cartesian coordinate system with horizontal x-axis and vertical y-axis. -
RADAR
The values are interpreted as radius-coordinates within a counter clockwise polar coordinate system. -
BAR
The values are interpreted as y-coordinates within a Cartesian coordinate system with horizontal x-axis and vertical y-axis. The accessory x-coordinates are generated from the positions in the y-value sequence starting with 1.0. The first y value gets an x value 1.0. The second y value is associated with an x value of 2.0 and so forth. -
STOCK
The values are interpreted together to form the opening, minimum, maximum and closing (in this order) values of a stock symbol displayed at the y scale in a Cartesian coordinate system with horizontal x-axis and vertical y-axis. If only three series are given, the values are interpreted as minimum, maximum and closing values (in this order). The accessory x-coordinates are generated from the positions in the y-value sequence starting with 1.0. The first y value gets an x value 1.0. The second y value is associated with an x value of 2.0 and so forth. -
SURFACE
The values are interpreted as altitudes at specific grid locations. -
GANTT
The values are interpreted together to form the start and end values (in this order) in a gantt chart. Start and end values are displayed at the y-axis in a Cartesian coordinate system with horizontal x-axis and vertical y-axis. The accessory x-coordinates are generated from the positions in the y-value sequence starting with 1.0. The first y value gets an x value 1.0. The second y value is associated with an x value of 2.0 and so forth.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-