public enum AxisStyles extends java.lang.Enum<AxisStyles>
Enum Constant and Description |
---|
ALLOW_HALF
If space permits and the Step property is left at auto, this enum will instruct the Axis to draw double the amount of labels as it normally would (drawing labels for half steps).
|
AUTO_CENTER
Instructs Chart FX to center the labels automatically.
|
AUTO_FIRST_LABEL
Automatically positions the first label to the closest number rounded to the axis step.
|
AUTO_LABEL_LAYOUT
Auto label layout will automatically determine if staggering or setting in an angle will increase the visibility of the labels.
|
AUTO_MINOR_STEP
Instructs Chart FX to calculate the MinorStep automatically.
|
AUTO_SCALE
Same as AutoScale Property.
|
BREAK_BASELINE
Description goes here
|
BREAK_ZERO
This constant will cause a chart to set the starting point at zero.
|
CENTERED
Displays Interlaced Grid on the selected axis.
|
DETECT_AREA
Instructs Chart FX to include the area around the axis labels when accessing the axis context menu.
|
DO_NOT_RESET
Setting this enum will prevent the Axis to reset in situations where it would normally reset it, like when the method RecalculateScale is called or the data is bound to the chart.
|
FIX_RIGHT_ALIGNED
Right justifies label text.
|
FORCE_BASELINE
Description goes here
|
FORCE_ZERO
Forces minimum to zero when adjusting the axis in a chart where all values are positive.
|
GRID_FRONT
Paints the axis gridlines on top of the series point markers.
|
GROUP_LABELS
Description goes here
|
HIDE
Hides entire axis, including labels and tick marks.
|
HIDE_TEXT
Hides labels for the selected axis.
|
HIGHLIGHT_VALUES
Instructs Chart FX to Highlight values higher than the value pointed by the mouse when highlighting the Axis.
|
IGNORE_LABELS
Ignores any axis label assignments and displays labels as default.
|
INVERTED
Sets the Max value for the selected axis lesser than the Min value.
|
LEFT_ALIGNED
If Y Axis is set to Far, this will instruct the labels to be aligned to the left.
|
LONG_TICK
Displays a long major tick mark that makes the axis label appear enclosed in a box.
|
NOT_CLIPPED
Do not clip the X legends (It is the programmers responsibility to assure that labels don't overlap each other).
|
NOTIFY
Setting this flag will make the chart generate a GetAxisLabel Event every time it needs to draw a legend in the selected axis.
|
ROTATE_TEXT
This setting applies to 3D charts only and it allows the text to be rotated when the chart is rotated.
|
ROUND_STEP
Do round the interval of tick marks and gridlines on the selected axis.
|
SHOW_2LEVELS
Displays staggered labels.
|
SHOW_ENDS
Forces ChartFX to display the minimum and maximum value independently from the step set to the chart.
|
SINGLE_LINE
Do not word-wrap labels.
|
Modifier and Type | Field and Description |
---|---|
java.util.EnumSet<AxisStyles> |
DEFAULT
The default value is: SingleLine OR BreakZero OR LongTick OR AutoScale OR ForceZero
|
Modifier and Type | Method and Description |
---|---|
long |
getUnderlyingValue()
Returns a numeric value that represents the given com.softwarefx.chartfx.server.AxisStyles.
|
static long |
getUnderlyingValue(java.util.EnumSet<AxisStyles> value)
Returns a numeric value that represents the given com.softwarefx.chartfx.server.AxisStyles.
|
static AxisStyles |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AxisStyles[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AxisStyles HIDE_TEXT
public static final AxisStyles NOTIFY
public static final AxisStyles SHOW_2LEVELS
public static final AxisStyles SINGLE_LINE
public static final AxisStyles BREAK_ZERO
public static final AxisStyles BREAK_BASELINE
public static final AxisStyles HIDE
public static final AxisStyles NOT_CLIPPED
public static final AxisStyles GROUP_LABELS
public static final AxisStyles CENTERED
public static final AxisStyles ROTATE_TEXT
public static final AxisStyles LONG_TICK
public static final AxisStyles AUTO_SCALE
public static final AxisStyles FORCE_ZERO
public static final AxisStyles FORCE_BASELINE
public static final AxisStyles SHOW_ENDS
public static final AxisStyles ROUND_STEP
public static final AxisStyles IGNORE_LABELS
public static final AxisStyles GRID_FRONT
public static final AxisStyles INVERTED
public static final AxisStyles DETECT_AREA
public static final AxisStyles AUTO_MINOR_STEP
public static final AxisStyles AUTO_FIRST_LABEL
public static final AxisStyles AUTO_CENTER
public static final AxisStyles FIX_RIGHT_ALIGNED
public static final AxisStyles AUTO_LABEL_LAYOUT
public static final AxisStyles ALLOW_HALF
public static final AxisStyles HIGHLIGHT_VALUES
public static final AxisStyles LEFT_ALIGNED
public static final AxisStyles DO_NOT_RESET
public java.util.EnumSet<AxisStyles> DEFAULT
public static AxisStyles[] values()
for (AxisStyles c : AxisStyles.values()) System.out.println(c);
public static AxisStyles 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 long getUnderlyingValue()
Returns a numeric value that represents the given com.softwarefx.chartfx.server.AxisStyles.
public static long getUnderlyingValue(java.util.EnumSet<AxisStyles> value)
Returns a numeric value that represents the given com.softwarefx.chartfx.server.AxisStyles.
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.