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")
                 .fontSize(FontSizeProperty.builder()
                         .relative("relative")
                         .build())
                 .fontStyle("fontStyle")
                 .fontWeight(FontWeightProperty.builder()
                         .name("name")
                         .build())
                 .build())
         .measureDataLabelStyle("measureDataLabelStyle")
         .measureLabelVisibility("measureLabelVisibility")
         .position("position")
         .visibility("visibility")
         .build();
 

See Also: