public enum AllowChanges extends java.lang.Enum<AllowChanges>
Enum Constant and Description |
---|
ALL
This will permit the end user to access all the functions.
|
ALLOW_DRAG
See
isAllowDrag . |
AXIS_SCALE
This will permit the end user to change scale used on the Y-axis from the options dialog.
|
AXIS_STEP
Allows the end user to change major and minor steps in any of the axis.
|
CLIPBOARD
This will permit the end user to copy bitmap or data of actual chart to the clipboard.
|
FONTS
This will permit the end user to change the fonts used in any of the titles supported.
|
GLOBAL_GALLERY
Allows the end user to see and change the chart gallery.
|
LOGARITHMIC_SCALE
This will permit the end user to change the Logarithmic Scale settings.
|
PRINT
This will permit the end user to print the contents of the chart window.
|
RESIZE_PANES
This will permit the end user to resize chart panes.
|
ROTATE
This will permit the end user to rotate the chart.
|
SERIES_GALLERY
Allows the end user to see and change the gallery of each series.
|
TITLES
This will permit the end user to change the text being assigned to the different titles supported (Top, Bottom, Right or Left).
|
VIEW_3D
This will permit the end user to switch to 3D view for any type of chart that is being displayed in 2D.
|
Modifier and Type | Field and Description |
---|---|
java.util.EnumSet<AllowChanges> |
DEFAULT
This will grant the user to have default access to the chart functions.
|
Modifier and Type | Method and Description |
---|---|
int |
getUnderlyingValue()
Returns a numeric value that represents the given com.softwarefx.chartfx.server.AllowChanges.
|
static int |
getUnderlyingValue(java.util.EnumSet<AllowChanges> value)
Returns a numeric value that represents the given com.softwarefx.chartfx.server.AllowChanges.
|
static AllowChanges |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AllowChanges[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AllowChanges ALLOW_DRAG
isAllowDrag
.public static final AllowChanges AXIS_STEP
public static final AllowChanges GLOBAL_GALLERY
public static final AllowChanges SERIES_GALLERY
public static final AllowChanges VIEW_3D
public static final AllowChanges AXIS_SCALE
public static final AllowChanges TITLES
public static final AllowChanges FONTS
public static final AllowChanges PRINT
public static final AllowChanges ROTATE
public static final AllowChanges CLIPBOARD
public static final AllowChanges LOGARITHMIC_SCALE
public static final AllowChanges RESIZE_PANES
public static final AllowChanges ALL
public java.util.EnumSet<AllowChanges> DEFAULT
public static AllowChanges[] values()
for (AllowChanges c : AllowChanges.values()) System.out.println(c);
public static AllowChanges 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.AllowChanges.
public static int getUnderlyingValue(java.util.EnumSet<AllowChanges> value)
Returns a numeric value that represents the given com.softwarefx.chartfx.server.AllowChanges.
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.