public enum DataElement extends java.lang.Enum<DataElement>
Enum Constant and Description |
---|
DATA_FIELD |
INI_VALUE
Instructs the chart to treat the selected field as a number to be used to set initial values for data points to achieve floating bars and area charts.
|
XVALUE
Instructs the chart to treat the selected field as a number to be used as the X axis coordinate.
|
YVALUE
Instructs the chart to treat the selected field as a number.
|
Modifier and Type | Method and Description |
---|---|
int |
getUnderlyingValue()
Returns a numeric value that represents the given com.softwarefx.chartfx.server.DataElement.
|
static DataElement |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DataElement[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataElement YVALUE
public static final DataElement XVALUE
public static final DataElement INI_VALUE
public static final DataElement DATA_FIELD
public static DataElement[] values()
for (DataElement c : DataElement.values()) System.out.println(c);
public static DataElement 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 nullpublic int getUnderlyingValue()
Returns a numeric value that represents the given com.softwarefx.chartfx.server.DataElement.
2014 Software FX, Inc. All Rights Reserved. Chart FX is a registered trademark of Software FX, Inc
All other names are trademarks or registered trademarks of their respective owners.