public enum ChartStyles extends java.lang.Enum<ChartStyles>
Enum Constant and Description |
---|
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.
|
CENTERED_ZOOM
Description goes here
|
COMPRESS_EQUAL_X
Description goes here
|
CROSSHAIRS
Turn on or off the cross-hairs feature.
|
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.
|
INDEPENDENT_SCROLL_BARS
Description goes here
|
MENUS_ON_DEMAND
See
isContextMenus 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.
|
TOOL_TIPS
|
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
|
Modifier and Type | Field and Description |
---|---|
java.util.EnumSet<ChartStyles> |
DEFAULT
Sets default settings.
|
Modifier and Type | Method and Description |
---|---|
int |
getUnderlyingValue()
Returns a numeric value that represents the given com.softwarefx.chartfx.server.ChartStyles.
|
static int |
getUnderlyingValue(java.util.EnumSet<ChartStyles> value)
Returns a numeric value that represents the given com.softwarefx.chartfx.server.ChartStyles.
|
static ChartStyles |
valueOf(java.lang.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.
|
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 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
isContextMenus
property.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 COMPRESS_EQUAL_X
public static final ChartStyles CENTERED_ZOOM
public static final ChartStyles INDEPENDENT_SCROLL_BARS
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 java.util.EnumSet<ChartStyles> DEFAULT
public static ChartStyles[] values()
for (ChartStyles c : ChartStyles.values()) System.out.println(c);
public static ChartStyles 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.ChartStyles.
public static int getUnderlyingValue(java.util.EnumSet<ChartStyles> value)
Returns a numeric value that represents the given com.softwarefx.chartfx.server.ChartStyles.
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.