Interface HorizontalAnnotation
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
HorizontalAnnotation.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-12-14T13:31:06.625Z")
@Stability(Stable)
public interface HorizontalAnnotation
extends software.amazon.jsii.JsiiSerializable
Horizontal annotation to be added to a graph.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.cloudwatch.*; HorizontalAnnotation horizontalAnnotation = HorizontalAnnotation.builder() .value(123) // the properties below are optional .color("color") .fill(Shading.NONE) .label("label") .visible(false) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forHorizontalAnnotation
static final class
An implementation forHorizontalAnnotation
-
Method Summary
Modifier and TypeMethodDescriptionstatic HorizontalAnnotation.Builder
builder()
default String
getColor()
The hex color code, prefixed with '#' (e.g.default Shading
getFill()
Add shading above or below the annotation.default String
getLabel()
Label for the annotation.getValue()
The value of the annotation.default Boolean
Whether the annotation is visible.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getValue
The value of the annotation. -
getColor
The hex color code, prefixed with '#' (e.g. '#00ff00'), to be used for the annotation. TheColor
class has a set of standard colors that can be used here.Default: - Automatic color
-
getFill
Add shading above or below the annotation.Default: No shading
-
getLabel
Label for the annotation.Default: - No label
-
getVisible
Whether the annotation is visible.Default: true
-
builder
- Returns:
- a
HorizontalAnnotation.Builder
ofHorizontalAnnotation
-