Interface CfnTemplate.PanelConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnTemplate.PanelConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnTemplate

@Stability(Stable) public static interface CfnTemplate.PanelConfigurationProperty extends software.amazon.jsii.JsiiSerializable
A collection of options that configure how each panel displays in a small multiples chart.

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.*;
 PanelConfigurationProperty panelConfigurationProperty = PanelConfigurationProperty.builder()
         .backgroundColor("backgroundColor")
         .backgroundVisibility("backgroundVisibility")
         .borderColor("borderColor")
         .borderStyle("borderStyle")
         .borderThickness("borderThickness")
         .borderVisibility("borderVisibility")
         .gutterSpacing("gutterSpacing")
         .gutterVisibility("gutterVisibility")
         .title(PanelTitleOptionsProperty.builder()
                 .fontConfiguration(FontConfigurationProperty.builder()
                         .fontColor("fontColor")
                         .fontDecoration("fontDecoration")
                         .fontSize(FontSizeProperty.builder()
                                 .relative("relative")
                                 .build())
                         .fontStyle("fontStyle")
                         .fontWeight(FontWeightProperty.builder()
                                 .name("name")
                                 .build())
                         .build())
                 .horizontalTextAlignment("horizontalTextAlignment")
                 .visibility("visibility")
                 .build())
         .build();
 

See Also: