public enum DataBarAxisPosition extends java.lang.Enum<DataBarAxisPosition>
| Enum Constant and Description |
|---|
Automatic
Displays the axis at a variable position based on the ratio of the minimum
negative value to the maximum positive value in the range.
|
Midpoint
Displays the axis at the midpoint of the cell regardless of the set of values
in the range.
|
None
Specifies that no axis is displayed, and both positive and negative values
are displayed in the left-to-right direction.
|
| Modifier and Type | Method and Description |
|---|---|
static DataBarAxisPosition |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DataBarAxisPosition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataBarAxisPosition None
public static final DataBarAxisPosition Automatic
public static final DataBarAxisPosition Midpoint
public static DataBarAxisPosition[] values()
for (DataBarAxisPosition c : DataBarAxisPosition.values()) System.out.println(c);
public static DataBarAxisPosition 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 null