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();
- See Also:
-
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.- See Also:
-
getBackgroundVisibility
Determines whether or not a background for each small multiples panel is rendered.- See Also:
-
getBorderColor
Sets the line color of panel borders.- See Also:
-
getBorderStyle
Sets the line style of panel borders.- See Also:
-
getBorderThickness
Sets the line thickness of panel borders.- See Also:
-
getBorderVisibility
Determines whether or not each panel displays a border.- See Also:
-
getGutterSpacing
Sets the total amount of negative space to display between sibling panels.- See Also:
-
getGutterVisibility
Determines whether or not negative space between sibling panels is rendered.- See Also:
-
getTitle
Configures the title display within each small multiples panel.- See Also:
-
builder
-