[]
        
(Showing Draft Content)

CategoryType

Enum Class CategoryType

java.lang.Object
java.lang.Enum<CategoryType>
com.grapecity.documents.excel.drawing.CategoryType
All Implemented Interfaces:
Serializable, Comparable<CategoryType>, Constable

public enum CategoryType extends Enum<CategoryType>
Specifies the type of the category axis.
  • Enum Constant Details

    • AutomaticScale

      public static final CategoryType AutomaticScale
      Specifies the automatic scale.
    • CategoryScale

      public static final CategoryType CategoryScale
      Specifies that the axis groups data by an arbitrary set of categories.
    • TimeScale

      public static final CategoryType TimeScale
      Specifies that the axis groups data on a time scale.
    • ValueScale

      public static final CategoryType ValueScale
      Specifies that the axis groups data on a value scale.
  • Method Details

    • values

      public static CategoryType[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static CategoryType valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null