Interface CfnTemplate.DataLabelOptionsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTemplate.DataLabelOptionsProperty.Jsii$Proxy
- Enclosing class:
CfnTemplate
@Stability(Stable)
public static interface CfnTemplate.DataLabelOptionsProperty
extends software.amazon.jsii.JsiiSerializable
The options that determine the presentation of the data labels.
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.quicksight.*; DataLabelOptionsProperty dataLabelOptionsProperty = DataLabelOptionsProperty.builder() .categoryLabelVisibility("categoryLabelVisibility") .dataLabelTypes(List.of(DataLabelTypeProperty.builder() .dataPathLabelType(DataPathLabelTypeProperty.builder() .fieldId("fieldId") .fieldValue("fieldValue") .visibility("visibility") .build()) .fieldLabelType(FieldLabelTypeProperty.builder() .fieldId("fieldId") .visibility("visibility") .build()) .maximumLabelType(MaximumLabelTypeProperty.builder() .visibility("visibility") .build()) .minimumLabelType(MinimumLabelTypeProperty.builder() .visibility("visibility") .build()) .rangeEndsLabelType(RangeEndsLabelTypeProperty.builder() .visibility("visibility") .build()) .build())) .labelColor("labelColor") .labelContent("labelContent") .labelFontConfiguration(FontConfigurationProperty.builder() .fontColor("fontColor") .fontDecoration("fontDecoration") .fontSize(FontSizeProperty.builder() .relative("relative") .build()) .fontStyle("fontStyle") .fontWeight(FontWeightProperty.builder() .name("name") .build()) .build()) .measureLabelVisibility("measureLabelVisibility") .overlap("overlap") .position("position") .visibility("visibility") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnTemplate.DataLabelOptionsProperty
static final class
An implementation forCfnTemplate.DataLabelOptionsProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
Determines the visibility of the category field labels.default Object
The option that determines the data label type.default String
Determines the color of the data labels.default String
Determines the content of the data labels.default Object
Determines the font configuration of the data labels.default String
Determines the visibility of the measure field labels.default String
Determines whether overlap is enabled or disabled for the data labels.default String
Determines the position of the data labels.default String
Determines the visibility of the data labels.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCategoryLabelVisibility
Determines the visibility of the category field labels. -
getDataLabelTypes
The option that determines the data label type. -
getLabelColor
Determines the color of the data labels. -
getLabelContent
Determines the content of the data labels. -
getLabelFontConfiguration
Determines the font configuration of the data labels. -
getMeasureLabelVisibility
Determines the visibility of the measure field labels. -
getOverlap
Determines whether overlap is enabled or disabled for the data labels. -
getPosition
Determines the position of the data labels. -
getVisibility
Determines the visibility of the data labels. -
builder
-