Package com.iizix.prop.ui.chart.plot2d
Enum PlotLabelStyle
- java.lang.Object
- java.lang.Enum<PlotLabelStyle>
- com.iizix.prop.ui.chart.plot2d.PlotLabelStyle
- All Implemented Interfaces:
IPropCnrChoiceOption<IPlotChoiceOption>
,IPlotChoiceOption
,java.io.Serializable
,java.lang.Comparable<PlotLabelStyle>
public enum PlotLabelStyle extends java.lang.Enum<PlotLabelStyle> implements IPlotChoiceOption
The placement of the labels varies with the different chart plot types along with their default values. For a pie, they include "default" (the default), and "columns". For Cartesian charts, it must be either "inside" or "outside". By default the labels are drawn "inside" the shape representing the data point (a column rectangle for a Columns plot or a marker for a Line plot for instance). When "outside" is used the labels are drawn above the data point shape.- Author:
- Christopher Mindus
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description PlotLabelStyle[]
enumValues()
Gets all the choices possible, including default.PlotLabelStyle
getDefault()
Gets the default value.int
getInt()
Returns the choice as an integer value.java.lang.String
getPropName()
Gets the property name.static PlotLabelStyle
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static PlotLabelStyle[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
Enum Constant Detail
DEFAULT
public static final PlotLabelStyle DEFAULT
Default is DEFAULT, but really depends on the plot type in the end.
INSIDE
public static final PlotLabelStyle INSIDE
OUTSIDE
public static final PlotLabelStyle OUTSIDE
COLUMNS
public static final PlotLabelStyle COLUMNS
Method Detail
values
public static PlotLabelStyle[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (PlotLabelStyle c : PlotLabelStyle.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
valueOf
public static PlotLabelStyle valueOf(java.lang.String name)
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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
getDefault
public PlotLabelStyle getDefault()
Gets the default value. This value is used to initialize the property.- Specified by:
getDefault
in interfaceIPropCnrChoiceOption<IPlotChoiceOption>
- Returns:
DEFAULT
, but really depends on the plot type in the end.
enumValues
public PlotLabelStyle[] enumValues()
Gets all the choices possible, including default.- Specified by:
enumValues
in interfaceIPropCnrChoiceOption<IPlotChoiceOption>
getInt
public int getInt()
Returns the choice as an integer value.- Specified by:
getInt
in interfaceIPropCnrChoiceOption<IPlotChoiceOption>
getPropName
public java.lang.String getPropName()
Gets the property name.- Specified by:
getPropName
in interfaceIPropCnrChoiceOption<IPlotChoiceOption>