Interface CfnAnalysis.ReferenceLineLabelConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnalysis.ReferenceLineLabelConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnAnalysis
@Stability(Stable)
public static interface CfnAnalysis.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")
.fontFamily("fontFamily")
.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()
.groupingStyle("groupingStyle")
.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()
.groupingStyle("groupingStyle")
.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()
.groupingStyle("groupingStyle")
.symbol("symbol")
.visibility("visibility")
.build())
.build())
.suffix("suffix")
.build())
.build())
.relativePosition("relativePosition")
.build())
.verticalPosition("verticalPosition")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAnalysis.ReferenceLineLabelConfigurationPropertystatic final classAn implementation forCfnAnalysis.ReferenceLineLabelConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectThe custom label configuration of the label in a reference line.default StringThe font color configuration of the label in a reference line.default ObjectThe font configuration of the label in a reference line.default StringThe horizontal position configuration of the label in a reference line.default ObjectThe value label configuration of the label in a reference line.default StringThe 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.Returns union: either
IResolvableorCfnAnalysis.ReferenceLineCustomLabelConfigurationProperty- 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.Returns union: either
IResolvableorCfnAnalysis.FontConfigurationProperty- See Also:
-
getHorizontalPosition
The horizontal position configuration of the label in a reference line. Choose one of the following options:.LEFTCENTERRIGHT
- See Also:
-
getValueLabelConfiguration
The value label configuration of the label in a reference line.Returns union: either
IResolvableorCfnAnalysis.ReferenceLineValueLabelConfigurationProperty- See Also:
-
getVerticalPosition
The vertical position configuration of the label in a reference line. Choose one of the following options:.ABOVEBELOW
- See Also:
-
builder
-