public enum CustomGridLineStyles extends java.lang.Enum<CustomGridLineStyles>
Enum Constant and Description |
---|
ADJUSTABLE
Description goes here
|
BACK_ONLY
Disables interactivity for the CustomGridLine
|
COLOR_TEXT
Applies the line color to the text
|
HIDE
Hides the CustomGridLine
|
HIDE_LINE
Hides the line only
|
HIDE_TEXT
Hides the text for the CustomGridLine
|
NONE
No styling
|
OUTSIDE_TEXT
Places the line's text outside the chart area
|
SHOW_VALUE
Show the line's associated value
|
Modifier and Type | Method and Description |
---|---|
int |
getUnderlyingValue()
Returns a numeric value that represents the given com.softwarefx.chartfx.server.CustomGridLineStyles.
|
static int |
getUnderlyingValue(java.util.EnumSet<CustomGridLineStyles> value)
Returns a numeric value that represents the given com.softwarefx.chartfx.server.CustomGridLineStyles.
|
static CustomGridLineStyles |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CustomGridLineStyles[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CustomGridLineStyles NONE
public static final CustomGridLineStyles HIDE_TEXT
public static final CustomGridLineStyles HIDE
public static final CustomGridLineStyles BACK_ONLY
public static final CustomGridLineStyles COLOR_TEXT
public static final CustomGridLineStyles HIDE_LINE
public static final CustomGridLineStyles OUTSIDE_TEXT
public static final CustomGridLineStyles SHOW_VALUE
public static final CustomGridLineStyles ADJUSTABLE
public static CustomGridLineStyles[] values()
for (CustomGridLineStyles c : CustomGridLineStyles.values()) System.out.println(c);
public static CustomGridLineStyles 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.CustomGridLineStyles.
public static int getUnderlyingValue(java.util.EnumSet<CustomGridLineStyles> value)
Returns a numeric value that represents the given com.softwarefx.chartfx.server.CustomGridLineStyles.
value
- A Enum Item.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.