[]
        
立即试用
(Showing Draft Content)

BarShape

Enum Class BarShape

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

public enum BarShape extends Enum<BarShape>
指定与3-D条形图或柱状图一起使用的形状。
  • Enum Constant Details

    • Box

      public static final BarShape Box
      指定一个盒子。
    • PyramidToPoint

      public static final BarShape PyramidToPoint
      指定一个金字塔,逐渐缩小到一个点的值。
    • PyramidToMax

      public static final BarShape PyramidToMax
      指定一个金字塔,在指定值处截断。
    • Cylinder

      public static final BarShape Cylinder
      指定一个圆柱体。
    • ConeToPoint

      public static final BarShape ConeToPoint
      指定一个圆锥体,其顶部为一个点值。
    • ConeToMax

      public static final BarShape ConeToMax
      指定一个圆锥体,其值被截断。
  • Method Details

    • values

      public static BarShape[] 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 BarShape 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