Enum LegendPosition

java.lang.Object
java.lang.Enum<LegendPosition>
software.amazon.awscdk.services.cloudwatch.LegendPosition
All Implemented Interfaces:
Serializable, Comparable<LegendPosition>, java.lang.constant.Constable

@Generated(value="jsii-pacmak/1.97.0 (build 729de35)", date="2024-04-18T17:54:13.953Z") @Stability(Stable) public enum LegendPosition extends Enum<LegendPosition>
The position of the legend on a GraphWidget.

Example:

 Dashboard dashboard;
 dashboard.addWidgets(GraphWidget.Builder.create()
         // ...
         .legendPosition(LegendPosition.RIGHT)
         .build());
 
  • Enum Constant Details

    • BOTTOM

      @Stability(Stable) public static final LegendPosition BOTTOM
      Legend appears below the graph (default).
    • HIDDEN

      @Stability(Stable) public static final LegendPosition HIDDEN
      Add shading below the annotation.
  • Method Details

    • values

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

      public static LegendPosition valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
      NullPointerException - if the argument is null