Interface CfnAnalysis.PanelConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnalysis.PanelConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnAnalysis
@Stability(Stable)
public static interface CfnAnalysis.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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnAnalysis.PanelConfigurationProperty
static final class
An implementation forCfnAnalysis.PanelConfigurationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
Sets the background color for each panel.default String
Determines whether or not a background for each small multiples panel is rendered.default String
Sets the line color of panel borders.default String
Sets the line style of panel borders.default String
Sets the line thickness of panel borders.default String
Determines whether or not each panel displays a border.default String
Sets the total amount of negative space to display between sibling panels.default String
Determines whether or not negative space between sibling panels is rendered.default Object
getTitle()
Configures the title display within each small multiples panel.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBackgroundColor
Sets the background color for each panel. -
getBackgroundVisibility
Determines whether or not a background for each small multiples panel is rendered. -
getBorderColor
Sets the line color of panel borders. -
getBorderStyle
Sets the line style of panel borders. -
getBorderThickness
Sets the line thickness of panel borders. -
getBorderVisibility
Determines whether or not each panel displays a border. -
getGutterSpacing
Sets the total amount of negative space to display between sibling panels. -
getGutterVisibility
Determines whether or not negative space between sibling panels is rendered. -
getTitle
Configures the title display within each small multiples panel. -
builder
-