[]
Serializable, Comparable<DataBarAxisPosition>, ConstableUse this enumeration to control whether the data bar axis is hidden, positioned automatically based on positive and negative values, or fixed at the midpoint of the cell.
worksheet.getRange("A1:A3").setValue(new Object[][] {{-10}, {0}, {20}});
IDataBar dataBar = worksheet.getRange("A1:A3").getFormatConditions().addDatabar();
dataBar.setAxisPosition(DataBarAxisPosition.Midpoint);
Enum.EnumDesc<E extends Enum<E>>static DataBarAxisPositionstatic DataBarAxisPosition[]values()name - the name of the enum constant to be returned.IllegalArgumentException - if this enum class has no constant with the specified nameNullPointerException - if the argument is null