[]
        
立即试用
(Showing Draft Content)

MarkerStyle

Enum Class MarkerStyle

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

public enum MarkerStyle extends Enum<MarkerStyle>
指定线图、散点图或雷达图中的点或系列的标记样式。
  • Enum Constant Details

    • Automatic

      public static final MarkerStyle Automatic
      指定自动标记。
    • None

      public static final MarkerStyle None
      指定无标记。
    • X

      public static final MarkerStyle X
      指定带有X的方形标记。
    • Picture

      public static final MarkerStyle Picture
      指定图片标记。
    • Dot

      public static final MarkerStyle Dot
      指定短条标记。
    • Dash

      public static final MarkerStyle Dash
      指定长条标记。
    • Square

      public static final MarkerStyle Square
      指定方形标记。
    • Diamond

      public static final MarkerStyle Diamond
      指定菱形标记。
    • Triangle

      public static final MarkerStyle Triangle
      指定三角标记。
    • Star

      public static final MarkerStyle Star
      指定带有星号的正方形标记。
    • Circle

      public static final MarkerStyle Circle
      指定圆形标记。
    • Plus

      public static final MarkerStyle Plus
      指定带有加号的方形标记。
  • Method Details

    • values

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