public enum DataBarAxisPosition extends Enum<DataBarAxisPosition>
Enum Constant and Description |
---|
AUTOMATIC
The axis position for the data bar is calculated automatically (variable position based on negative values).
|
MIDPOINT
The axis position for the data bar is the midpoint of the cell.
|
NONE
There is no axis for the data bar.
|
Modifier and Type | Method and Description |
---|---|
static DataBarAxisPosition |
valueOf(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 AUTOMATIC
public static final DataBarAxisPosition MIDPOINT
public static final DataBarAxisPosition NONE
public static DataBarAxisPosition valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic static DataBarAxisPosition[] values()
for (DataBarAxisPosition c : DataBarAxisPosition.values()) System.out.println(c);
© GemBox d.o.o. — All rights reserved.