|
Chart FX 7 for Java Server | |||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<ChartStyles>
com.softwarefx.chartfx.server.ChartStyles
public enum ChartStyles
Define end user access to several functions provided through the Chart FX end user interface.
Enum Constant Summary | |
---|---|
ALLOW_SCROLL
When OFF, none of the Axes will allow scroll. |
|
ASSEMBLY_NAME_ONLY
Assembly name only |
|
CACHE_IMAGE
Keeps a snapshot of the chart, as it was painted the last time, into an image in memory. |
|
CROSSHAIRS
Turn on or off the cross-hairs feature. |
|
DEFAULT
Sets default settings. |
|
DOUBLE_BUFFER
The chart will refresh itself using a double buffering technique. |
|
EXPORT_XVALUES
If this flag is ON, the X values are exported to the clipboard every time you export the chart as data. |
|
FAST_LEGENDS
Disable the legend size computation. |
|
FORCE_DATA_DRIVEN
ForceDataDriven |
|
GET_TIP_DRAG
Will get the toolltip even while dragging the mouse |
|
HIDE_ZLABELS
When ON, the z labels will be hidden. |
|
MENUS_ON_DEMAND
See ContextMenus property. |
|
MONOCHROME
Turn ON will show a Black & White chart and it won't be possible to change chart colors. |
|
NO_LEG_INVALIDATE
Useful for RealTime charts. |
|
NO_TEXT_SMOOTHING
When ON, it will not be smootihing for the text. |
|
ONLY_CHART
Makes the chart to hide everything outside the chart area such a axis,titles,etc.This feature is very useful when you want to overlap charts. |
|
PAINT_MARKER
This constant will turn on message event for customize chart drawing process. |
|
PAINT_NO_CHART
When ON, the chart will not be painted. |
|
SCROLL_BARS
When OFF, it will hide the Scrollbars. |
|
SIDE_BY_SIDE
For 2D MultiType charts, makes the bars to be side-by-side instead of overlapped. |
|
TOOL_TIPS
Turn on or off the tool-tips feature. |
|
TRACK_MOUSE
This constant has to be included for those charts you want to capture mouse tracking. |
|
USE_CALLBACKS_FOR_EVENTS
Instructs the charts to use callbacks instead of PostBacks for the chart's events |
Method Summary | |
---|---|
static EnumSet<ChartStyles> |
getEnumSetValue(int value)
Returns a EnumSet that represents the given numeric value. |
static ChartStyles |
getEnumValue(int value)
Returns a Enum Item that represents the given numeric value. |
static int |
getUnderlyingValue(ChartStyles value)
Returns a numeric value that represents the given EnumSet or Enum item. |
static int |
getUnderlyingValue(EnumSet<ChartStyles> value)
Returns a numeric value that represents the given EnumSet or Enum item. |
static ChartStyles |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static ChartStyles[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final ChartStyles TRACK_MOUSE
public static final ChartStyles DOUBLE_BUFFER
public static final ChartStyles GET_TIP_DRAG
public static final ChartStyles NO_LEG_INVALIDATE
public static final ChartStyles PAINT_MARKER
public static final ChartStyles ONLY_CHART
public static final ChartStyles SIDE_BY_SIDE
public static final ChartStyles MONOCHROME
public static final ChartStyles CACHE_IMAGE
public static final ChartStyles EXPORT_XVALUES
public static final ChartStyles FAST_LEGENDS
public static final ChartStyles CROSSHAIRS
public static final ChartStyles TOOL_TIPS
public static final ChartStyles MENUS_ON_DEMAND
public static final ChartStyles SCROLL_BARS
public static final ChartStyles ALLOW_SCROLL
public static final ChartStyles FORCE_DATA_DRIVEN
public static final ChartStyles USE_CALLBACKS_FOR_EVENTS
public static final ChartStyles ASSEMBLY_NAME_ONLY
public static final ChartStyles NO_TEXT_SMOOTHING
public static final ChartStyles PAINT_NO_CHART
public static final ChartStyles HIDE_ZLABELS
public static final ChartStyles DEFAULT
Method Detail |
---|
public static ChartStyles[] values()
for (ChartStyles c : ChartStyles.values()) System.out.println(c);
public static ChartStyles valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullpublic static EnumSet<ChartStyles> getEnumSetValue(int value)
Returns a EnumSet that represents the given numeric value.
value
- numeric representation of the Enumset.public static ChartStyles getEnumValue(int value)
Returns a Enum Item that represents the given numeric value.
value
- numeric representation of the Enum item.public static int getUnderlyingValue(ChartStyles value)
Returns a numeric value that represents the given EnumSet or Enum item.
value
- A Enum Item or EnumSet.public static int getUnderlyingValue(EnumSet<ChartStyles> value)
Returns a numeric value that represents the given EnumSet or Enum item.
value
- A Enum Item or EnumSet.
|
http://www.softwarefx.com | |||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |