Interface CfnAnalysis.FunnelChartDataLabelOptionsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnalysis.FunnelChartDataLabelOptionsProperty.Jsii$Proxy
- Enclosing class:
CfnAnalysis
@Stability(Stable)
public static interface CfnAnalysis.FunnelChartDataLabelOptionsProperty
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.*;
FunnelChartDataLabelOptionsProperty funnelChartDataLabelOptionsProperty = FunnelChartDataLabelOptionsProperty.builder()
.categoryLabelVisibility("categoryLabelVisibility")
.labelColor("labelColor")
.labelFontConfiguration(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())
.measureDataLabelStyle("measureDataLabelStyle")
.measureLabelVisibility("measureLabelVisibility")
.position("position")
.visibility("visibility")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAnalysis.FunnelChartDataLabelOptionsPropertystatic final classAn implementation forCfnAnalysis.FunnelChartDataLabelOptionsProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe visibility of the category labels within the data labels.default StringThe color of the data label text.default ObjectThe font configuration for the data labels.default StringDetermines the style of the metric labels.default StringThe visibility of the measure labels within the data labels.default StringDetermines the positioning of the data label relative to a section of the funnel.default StringThe visibility option that determines if data labels are displayed.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCategoryLabelVisibility
The visibility of the category labels within the data labels.- See Also:
-
getLabelColor
The color of the data label text.- See Also:
-
getLabelFontConfiguration
The font configuration for the data labels.Only the
FontSizeattribute of the font configuration is used for data labels.Returns union: either
IResolvableorCfnAnalysis.FontConfigurationProperty- See Also:
-
getMeasureDataLabelStyle
Determines the style of the metric labels.- See Also:
-
getMeasureLabelVisibility
The visibility of the measure labels within the data labels.- See Also:
-
getPosition
Determines the positioning of the data label relative to a section of the funnel.- See Also:
-
getVisibility
The visibility option that determines if data labels are displayed.- See Also:
-
builder
-