Interface CfnAnalysis.PanelTitleOptionsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnalysis.PanelTitleOptionsProperty.Jsii$Proxy
- Enclosing class:
- CfnAnalysis
@Stability(Stable)
public static interface CfnAnalysis.PanelTitleOptionsProperty
extends software.amazon.jsii.JsiiSerializable
The options that determine the title styles for each small multiples panel.
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.*;
PanelTitleOptionsProperty panelTitleOptionsProperty = 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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAnalysis.PanelTitleOptionsPropertystatic final classAn implementation forCfnAnalysis.PanelTitleOptionsProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFontConfiguration
CfnAnalysis.PanelTitleOptionsProperty.FontConfiguration. -
getHorizontalTextAlignment
Sets the horizontal text alignment of the title within each panel. -
getVisibility
Determines whether or not panel titles are displayed. -
builder
-