Enum Constant and Description |
---|
DEFAULT
Shows the default axes style.
|
FLAT_FRAME
A single, flat frame is displayed in the axis.
|
FRAME_3D
A 3D frame will be shown as the axis.
|
MATH
Only tickmarks will be shown as the axis.
|
NONE
No frame is displayed around the axis.
|
XAXIS_ONLY
Displays the line on the X axis only.
|
YAXIS_ONLY
Displays the line on the Y axis only.
|
Modifier and Type | Method and Description |
---|---|
int |
getUnderlyingValue()
Returns a numeric value that represents the given com.softwarefx.chartfx.server.AxesStyle.
|
static AxesStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AxesStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AxesStyle NONE
public static final AxesStyle FRAME_3D
public static final AxesStyle MATH
public static final AxesStyle FLAT_FRAME
public static final AxesStyle XAXIS_ONLY
public static final AxesStyle YAXIS_ONLY
public static final AxesStyle DEFAULT
public static AxesStyle[] values()
for (AxesStyle c : AxesStyle.values()) System.out.println(c);
public static AxesStyle 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.AxesStyle.
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.