Interface CfnDashboard.ReferenceLineLabelConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDashboard.ReferenceLineLabelConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnDashboard
@Stability(Stable)
public static interface CfnDashboard.ReferenceLineLabelConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
The label configuration of a reference line.
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.*; ReferenceLineLabelConfigurationProperty referenceLineLabelConfigurationProperty = ReferenceLineLabelConfigurationProperty.builder() .customLabelConfiguration(ReferenceLineCustomLabelConfigurationProperty.builder() .customLabel("customLabel") .build()) .fontColor("fontColor") .fontConfiguration(FontConfigurationProperty.builder() .fontColor("fontColor") .fontDecoration("fontDecoration") .fontSize(FontSizeProperty.builder() .absolute("absolute") .relative("relative") .build()) .fontStyle("fontStyle") .fontWeight(FontWeightProperty.builder() .name("name") .build()) .build()) .horizontalPosition("horizontalPosition") .valueLabelConfiguration(ReferenceLineValueLabelConfigurationProperty.builder() .formatConfiguration(NumericFormatConfigurationProperty.builder() .currencyDisplayFormatConfiguration(CurrencyDisplayFormatConfigurationProperty.builder() .decimalPlacesConfiguration(DecimalPlacesConfigurationProperty.builder() .decimalPlaces(123) .build()) .negativeValueConfiguration(NegativeValueConfigurationProperty.builder() .displayMode("displayMode") .build()) .nullValueFormatConfiguration(NullValueFormatConfigurationProperty.builder() .nullString("nullString") .build()) .numberScale("numberScale") .prefix("prefix") .separatorConfiguration(NumericSeparatorConfigurationProperty.builder() .decimalSeparator("decimalSeparator") .thousandsSeparator(ThousandSeparatorOptionsProperty.builder() .symbol("symbol") .visibility("visibility") .build()) .build()) .suffix("suffix") .symbol("symbol") .build()) .numberDisplayFormatConfiguration(NumberDisplayFormatConfigurationProperty.builder() .decimalPlacesConfiguration(DecimalPlacesConfigurationProperty.builder() .decimalPlaces(123) .build()) .negativeValueConfiguration(NegativeValueConfigurationProperty.builder() .displayMode("displayMode") .build()) .nullValueFormatConfiguration(NullValueFormatConfigurationProperty.builder() .nullString("nullString") .build()) .numberScale("numberScale") .prefix("prefix") .separatorConfiguration(NumericSeparatorConfigurationProperty.builder() .decimalSeparator("decimalSeparator") .thousandsSeparator(ThousandSeparatorOptionsProperty.builder() .symbol("symbol") .visibility("visibility") .build()) .build()) .suffix("suffix") .build()) .percentageDisplayFormatConfiguration(PercentageDisplayFormatConfigurationProperty.builder() .decimalPlacesConfiguration(DecimalPlacesConfigurationProperty.builder() .decimalPlaces(123) .build()) .negativeValueConfiguration(NegativeValueConfigurationProperty.builder() .displayMode("displayMode") .build()) .nullValueFormatConfiguration(NullValueFormatConfigurationProperty.builder() .nullString("nullString") .build()) .prefix("prefix") .separatorConfiguration(NumericSeparatorConfigurationProperty.builder() .decimalSeparator("decimalSeparator") .thousandsSeparator(ThousandSeparatorOptionsProperty.builder() .symbol("symbol") .visibility("visibility") .build()) .build()) .suffix("suffix") .build()) .build()) .relativePosition("relativePosition") .build()) .verticalPosition("verticalPosition") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDashboard.ReferenceLineLabelConfigurationProperty
static final class
An implementation forCfnDashboard.ReferenceLineLabelConfigurationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Object
The custom label configuration of the label in a reference line.default String
The font color configuration of the label in a reference line.default Object
The font configuration of the label in a reference line.default String
The horizontal position configuration of the label in a reference line.default Object
The value label configuration of the label in a reference line.default String
The vertical position configuration of the label in a reference line.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCustomLabelConfiguration
The custom label configuration of the label in a reference line.- See Also:
-
getFontColor
The font color configuration of the label in a reference line.- See Also:
-
getFontConfiguration
The font configuration of the label in a reference line.- See Also:
-
getHorizontalPosition
The horizontal position configuration of the label in a reference line. Choose one of the following options:.LEFT
CENTER
RIGHT
- See Also:
-
getValueLabelConfiguration
The value label configuration of the label in a reference line.- See Also:
-
getVerticalPosition
The vertical position configuration of the label in a reference line. Choose one of the following options:.ABOVE
BELOW
- See Also:
-
builder
-