Interface CfnAnalysis.DataLabelOptionsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnalysis.DataLabelOptionsProperty.Jsii$Proxy
- Enclosing class:
CfnAnalysis
@Stability(Stable)
public static interface CfnAnalysis.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") .totalsVisibility("totalsVisibility") .visibility("visibility") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnAnalysis.DataLabelOptionsProperty
static final class
An implementation forCfnAnalysis.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 total.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.- See Also:
-
getDataLabelTypes
The option that determines the data label type.- See Also:
-
getLabelColor
Determines the color of the data labels.- See Also:
-
getLabelContent
Determines the content of the data labels.- See Also:
-
getLabelFontConfiguration
Determines the font configuration of the data labels.- See Also:
-
getMeasureLabelVisibility
Determines the visibility of the measure field labels.- See Also:
-
getOverlap
Determines whether overlap is enabled or disabled for the data labels.- See Also:
-
getPosition
Determines the position of the data labels.- See Also:
-
getTotalsVisibility
Determines the visibility of the total.- See Also:
-
getVisibility
Determines the visibility of the data labels.- See Also:
-
builder
-