枚举类 LegendPosition

java.lang.Object
java.lang.Enum<LegendPosition>
com.grapecity.documents.excel.drawing.LegendPosition
所有已实现的接口:
Serializable, Comparable<LegendPosition>, Constable

public enum LegendPosition extends Enum<LegendPosition>
指定图表上图例的位置。
  • 枚举常量详细资料

    • Custom

      public static final LegendPosition Custom
      指定一个自定义位置。
    • Top

      public static final LegendPosition Top
      指定在图表上方的位置。
    • Left

      public static final LegendPosition Left
      指定图表左侧的位置。
    • Bottom

      public static final LegendPosition Bottom
      指定在图表下面的位置。
    • Corner

      public static final LegendPosition Corner
      指定图表边框右上角的位置。
  • 方法详细资料

    • values

      public static LegendPosition[] values()
      返回包含该枚举类的常量的数组, 顺序与声明这些常量的顺序相同
      返回:
      包含该枚举类的常量的数组,顺序与声明这些常量的顺序相同
    • valueOf

      public static LegendPosition valueOf(String name)
      返回带有指定名称的该类的枚举常量。 字符串必须与用于声明该类的枚举常量的 标识符完全匹配。(不允许有多余 的空格字符。)
      参数:
      name - 要返回的枚举常量的名称。
      返回:
      返回带有指定名称的枚举常量
      抛出:
      IllegalArgumentException - 如果该枚举类没有带有指定名称的常量
      NullPointerException - 如果参数为空值