public enum AxisFormat extends java.lang.Enum<AxisFormat>
Defines the valid formats to may be apply to an axis.
Enum Constant and Description |
---|
CURRENCY
Displays Currency, as defined in the International section of the Control Panel.
|
DATE
Displays a Short Date, as defined in the International section of the Control Panel.
|
DATE_TIME
Displays Date-Time, as defined in the International section of the Control Panel.
|
LONG_DATE
Displays a Long Date, as defined in the International section of the Control Panel.
|
NONE
Displays a Number without formatting.
|
NUMBER
Displays a Number, as defined in the International section of the Control Panel.
|
PERCENTAGE
Displays numbers multiplied by 100 with a percent sign (%) appended to the right; display two digits to the right of the decimal separator.
|
SCIENTIFIC
Displays standard scientific notation.
|
TIME
Displays Time, as defined in the International section of the Control Panel.
|
TIME_SPAN
Displays TimeSpan, as defined in the International section of the Control Panel.
|
Modifier and Type | Method and Description |
---|---|
int |
getUnderlyingValue()
Returns a numeric value that represents the given com.softwarefx.chartfx.server.AxisFormat.
|
static AxisFormat |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AxisFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AxisFormat NONE
public static final AxisFormat NUMBER
public static final AxisFormat CURRENCY
public static final AxisFormat SCIENTIFIC
public static final AxisFormat PERCENTAGE
public static final AxisFormat DATE
public static final AxisFormat LONG_DATE
public static final AxisFormat TIME
public static final AxisFormat DATE_TIME
public static final AxisFormat TIME_SPAN
public static AxisFormat[] values()
for (AxisFormat c : AxisFormat.values()) System.out.println(c);
public static AxisFormat 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.AxisFormat.
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.